VB中如何将数组作为参数传递?
发布网友
发布时间:2023-09-14 23:22
我来回答
共5个回答
热心网友
时间:2024-11-30 07:42
简单的给你说一句吧!
public 数组名()as long是你的定义 这句是对的,但你放错位置了 不是放窗体中,而是新建模块,放模块中.这样全局有效!
你前半句说的是错的,后面也是错的.
public sub define_array() '这里是模块(过程)的头,这句是对的 public 可要可不要.
public an_array() as long '在sub()...end sub中不能使用public来什么变量,直接用dim.
end sub
关于使用过程:call define_array() '过程名后面不能跟括号,除非里面传有参数 直接call define_array 或 define_array
redim an_array(5) '这句是对的 对动态数组分配空间
热心网友
时间:2024-11-30 07:43
#include "stdio.h"
void max(int a[]){
int i;
int max;
max=a[0];
for(i=1;i<30;i++){
if(max<a[i])
max=a[i];
}
printf("the max is:%d\n",max);
}
main(){
int a[30];
int i;
for(i=0;i<30;i++){
a[i]=i;
}
max(a);
}
数组作为参数,传递的是数组的首地址,然后方法接收,通过地址的增加访问数组的值
热心网友
时间:2024-11-30 07:43
可以不用在窗体中定义的,你可以试着在模块中定义,那么整个工程中的任何调用都是可以的。
你的模块学了没?
以上就是详细的解释过程!
热心网友
时间:2024-11-30 07:44
#include
"stdio.h"
void
max(int
a[]){
int
i;
int
max;
max=a[0];
for(i=1;i<30;i++){
if(max<a[i])
max=a[i];
}
printf("the
max
is:%d\n",max);
}
main(){
int
a[30];
int
i;
for(i=0;i<30;i++){
a[i]=i;
}
max(a);
}
数组作为参数,传递的是数组的首地址,然后方法接收,通过地址的增加访问数组的值
热心网友
时间:2024-11-30 07:45
看一下你的调用格式.