gpt4 book ai didi

c++ - 还有其他方法可以在函数中传递数组吗?

转载 作者:行者123 更新时间:2023-11-30 01:25:03 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
passing 2D array to function

我的问题与将数组作为 C++ 函数参数传递有关。让我先举个例子:

void fun(double (*projective)[3])
{
for(int i=0; i<3; i++)
for(int j=0; j<3; j++)
{
projective[i][j]= i*100+j;
}
}

int main()
{
double projective[3][3];

fun(projective);
for(int i=0; i<3; i++)
{
cout<<endl;
for(int j=0; j<3; j++)
cout<<projective[i][j]<<" ";
}


return 0;
}

在示例中,fun 的传递参数是一个数组,我想知道是否还有其他方法可以传递此参数。谢谢!

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com