:=和=的区别是什么? 问题点数:20、回复次数:2Top
= 赋值 := 方法参数传递Top
eg: sub test(a,b,c) ... end sub '引用此方法时 call test(x,y,z) '或者 call test(b:=y,a:=x,c:=z) '一般的=就是赋值Top