如果有个过程
sub A(str)
response.write str
end sub
调用的时候可以写:
A("hi")
A "hi"
call A("hi")
call A "hi"
如果有个过程有2个参数
sub B(str1,str2)
response.write str1&str2
end sub
调用的时候只能:
B "hi ","topso"
call B("hi ","topso")
调用过程超过1个参数的时候只能用上面2种方式了
c#里面就1种:A("hi"),如果有返回值也不用声明sub或者function,只要void或者返回类型就好了,所以强命名很有好处的啊