当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript 程序
Sub procedure
The sub procedure does not return a value.
sub程序不会返回值
Function procedure
The function procedure is used if you want to return a value.
当你想返回值可以使用函数程序
We have two kinds of procedures: The Sub procedure and the Function procedure.
我们来看看这两种程序:Sub程序和Function(函数)程序
A Sub procedure:
Sub程序:
Sub mysub() or Sub mysub(argument1,argument2) |
A Function procedure:
函数程序:
Function myfunction() or Function myfunction(argument1,argument2) |
When you call a Function in your code, you do like this:
当你在代码中要调用Function的时候你可以这样:
name = findname() |
Here you call a Function called "findname", the Function returns a value that will be stored in the variable "name".
这个时候你已经调用了一个名为"findname"的Function(函数)了。函数会把产生的值返回到并存储到变量"name"中
Or, you can do like this:
或者,你可以这样做:
msgbox "Your name is " & findname() |
Here you also call a Function called "findname", the Function returns a value that will be displayed in the message box.
这样你也是调用了名为"findname"的函数,它会将返回的结果连同前面的字符串一起显示在信息框中。
When you call a Sub procedure you can use the Call statement, like this:
当你要调用Sub程序的时候可以使用Call声明,像这样:
Call MyProc(argument) |
Or, you can omit the Call statement, like this:
或者你可以将Call忽略掉这样声明:
MyProc argument |