首页上一页 1 下一页尾页 1 条记录 1/1页
参数传递
发表在VB答疑区
2010-11-21
是否精华
是
否
版块置顶:
是
否
老师好:
请帮忙回答一下下面的语句,是怎么传递的,又是什么关系,我怎么也想不通,它们有什么联系。再加注释一下,谢谢。
private sub command1_claick()
dim a as integer,b as integer
a=20
b=10
if a>b then
call sort(a,b)
endif
print"a=";a,"b=";b
end sub
private sub sort(byval x as integer,byval y as integer)
dim temp as integer
temp=x
x=y
y=temp
print"x=";x,"y=";y
end sub
请帮忙回答一下下面的语句,是怎么传递的,又是什么关系,我怎么也想不通,它们有什么联系。再加注释一下,谢谢。
private sub command1_claick()
dim a as integer,b as integer
a=20
b=10
if a>b then
call sort(a,b)
endif
print"a=";a,"b=";b
end sub
private sub sort(byval x as integer,byval y as integer)
dim temp as integer
temp=x
x=y
y=temp
print"x=";x,"y=";y
end sub