欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp中Byval与Byref的区别

程序员文章站 2022-04-14 20:29:29
文件名称: byval.asp byref.asp 具体代码: <%sub testmain()dim a : a=5ca...

文件名称:

byval.asp

byref.asp

具体代码:

<%
sub testmain()
dim a : a=5
call testby(a)
response.write a
end sub
sub testby(byval t)
t=t+1
end sub
call testmain()
%>

<%
sub testmain()
dim a : a=5
call testby(a)
response.write a
end sub
sub testby(byref t)
t=t+1
end sub
call testmain()
%>

运行结果:

5

6

:

注意:子程序testby(byval t)t变量声明方式是byval

运行结果子程序没有影响到a的值

注意:子程序testby(byref t)t变量的声明方式是byref

运行结果a的值通过子程序发生了改变

看完了,上面的比较就知道说明意思了吧。

1、引用参数(ref)在可以作为引用参数在函数成员调用中传递之前,必须已明确赋值,而输出参数(out)在可以作为输出参数在函数成员调用中传递之前不一定要明确赋值,在该函数成员正常返回前都必须已明确赋值。
2、在函数内部,引用参数(ref)被视为初始已赋值,输出参数(out)被视为初始未赋值。 
3、默认地,c#中的所有参数都是值传递。只有在参数的修饰符中明确包含out或ref,才是引用传递。但是需要知道的是,当参数的类型是引用类型时,你传递的是一个对象的引用而不是实际的对象。
实例: 
复制代码 代码如下:

sub add1(byval no as int32)
no=no+100
end sub

sub add2(byref no as int32)
no=no+100
end sub

private sub button1_click(sender as object,e as eventargs)handles button1.click
dim a as int32
a=100
add1(a)
msgbox ("a的值为:" & a) '示:a的值为100
add2(a)
msgbox ("a的值为:" & a) '示:a的值为200,因为add2中的参数no为byref,即
'地址传递,因此在add2中对no进行修改后,将会导致
'参数a的值也被修改。
end sub

byval是传递值 源数据不会被修改,你可以把这个值当作自己的局部变量来使用;byref是传递地址,源数据可能被修改,你对这个变量的操作将对你传入的那个变量产生影响,就像指针的感觉。

在asp编程中,经常需要自己编写一些函数(或过程)来实现某些特定的功能,这时往往需要向函数(或过程)传递相应的参数
在函数(或过程)中进行数据处理,即有可能需要保留或改变参数的值,下面有相关范例
用下面的函数(testaddress)就可以使一个函数多个返回值成为可能(一个函数返回值,多个参数改变后的值)
1、byval传值:一种将参数值而不是将地址传递给过程的方式,这就使过程访问到变量的复本。结果,过程不可改变变量的真正值。
2、byref传值:一种将参数地址而不是将值传递给过程的方式,这就使过程访问到实际的变量。结果,过程可改变变量的真正值。除非另作说明,否则按地址传递参数。
3、系统默认的是byref传值。
例子:
复制代码 代码如下:

<script language="vbscript">
dim a
a=0
document.write "a=0"
document.write "<br/>sub change(byref ar)<br/>"
change a
document.write a
a=0
document.write "<br/>sub change2(byval ar)<br/>"
change2 a
document.write a
a=0
document.write "<br/>sub change3( ar)<br/>"
change3 a
document.write a
a=0
document.write "<br/>function change4(byref ar)<br/>"
change4 a
document.write a
a=0
document.write "<br/>function change5(byval ar)<br/>"
change5 a
document.write a
a=0
document.write "<br/>function change6( ar)<br/>"
change6 a
document.write a
a=0
sub change(byref ar)
ar=111
end sub
sub change2(byval ar)
ar=222
end sub
sub change3( ar)
ar=333
end sub
function change4(byref ar)
ar=444
end function
function change5(byval ar)
ar=555
end function
function change6( ar)
ar=666
end function
</script>

=======================
结果:
a=0
sub change(byref ar)
111
sub change2(byval ar)
0
sub change3( ar)
333
function change4(byref ar)
444
function change5(byval ar)
0
function change6( ar)
666
说明vbs默认是byref,这点和vb一样, 按地址。

范例:
<%@language="vbscript"%>
<%
option explicit
'===================================================================
' 参数传递
' 1.值传递参数 (call by value)
' function testvalue(byval a,byval b)
' 函数内参数 a、b 改变 不影响 函数的外部变量
'
' 2.指针参数 (call by address)
' function testaddress(byref a,byref b)
' 函数内参数 a、b 改变 影响到 函数的外部变量
'
' 说明:
' 1. 参数可以是数字、字符、数组、对象等vbscript语言所支持的大部分类型
' 2. 函数返回值的类型也可以是数字、字符、数组、对象等vbscript语言所支持的大部分类型
' 3. 过程调用参数方法与函数类似
'===================================================================
dim a1,b1
dim a2,b2
function testvalue(byval a,byval b)
a = a + 1
b = b + 1
testvalue = a + b
end function
function testaddress(byref a,byref b)
a = a + 1
b = b + 1
testaddress = a + b
end function
a1 = 11
b1 = 33
a2 = 11
b2 = 33
response.write "初值:" & " "
response.write "a1=" & a1 & " "
response.write "b1=" & b1 & "<br>"
response.write "函数(testvalue)值:" & testvalue(a1,b1) & "<br>"
response.write "终值:" & " "
response.write "a1=" & a1 & " "
response.write "b1=" & b1 & "<br><br><br>"
response.write "初值:" & " "
response.write "a2=" & a2 & " "
response.write "b2=" & b2 & "<br>"
response.write "函数(testaddress)值:" & testaddress(a2,b2) & "<br>"
response.write "终值:" & " "
response.write "a2=" & a2 & " "
response.write "b2=" & b2
'======================
' 相似过程
'======================
sub test_value(byval a,byval b)
a = a + 1
b = b + 1
end sub
sub test_address(byref a,byref b)
a = a + 1
b = b + 1
end sub
' 类似,传递数组、对象(或者在函数中改变其值、属性)
'对象直接把对象名作为参数即可
' 数组,把数组名称作为参数
redim arytest(2,2)
dim intnum
function ary_test(byref a)
ary_test = ubound(ary_test,2)
end function
'调用
intnum = ary_test(intnum) '值为 3
%>