| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 361 人关注过本帖
标题:[求助]函数调用问题?
只看楼主 加入收藏
sishui198
Rank: 1
等 级:新手上路
帖 子:113
专家分:0
注 册:2007-4-12
收藏
 问题点数:0 回复次数:0 
[求助]函数调用问题?


privatf1(x as integer,y as integer,z as integer)
x=2
y=4
z=6
end sub
privatf2(x as integer,byval y as integer,byval z as integer)
x=1
y=3
z=4
end sub
privatf3(byval x as integer,byval y as integer,byval z as integer)
x=3
y=8
z=9
end sub
private subcommand_click()
dim a as integer,b as integer ,z as integer
print
a=1
b=2
c=3
print tab(3);a,b,c
call f1(a,b,c)
print tab(3);a,b,c
call f2(a,b,c)
print tab(3);a,b,c
call f3
(a,b,c)
print tab(3);a,b,c
end sub
答案为什么是
1 2 3
2 4 6
1 4 6
1 4 6
byval 是传值,为什么在把a,b,c传给 ,x,y,z 时f3 的结果不是1 2 3。能具体说一下吗?谢谢,顺便说一下,在这些被调用的函数中,比如
privatf2(x as integer,byval y as integer,byval z as integer)
x=1
y=3
z=4
end sub
x=1
y=3
z=4
这三有什么作用?
如果 f2含有数学表达式,是不是把这些值传道这个函数并带如表达式?

搜索更多相关主题的帖子: 函数 
2007-04-19 14:03
快速回复:[求助]函数调用问题?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017799 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved