gpt4 book ai didi

c++ - 函数如何访问矩阵?

转载 作者:行者123 更新时间:2023-12-02 09:52:01 28 4
gpt4 key购买 nike

我有一个函数和一个在它上面声明的矩阵。

int M[100][100];
int function(int row , int col)
{
if (M[row][col] == 1)return 1;
return 0;
}
我的问题是,如果我不将其作为参数传递,该函数如何访问矩阵,例如:
int function(int row , int col , int X[][100])
谢谢你。

最佳答案

您可以将矩阵设为全局变量(不推荐),以便能够在函数中访问它而无需将其作为参数传递。见 this回答具有文件范围全局访问权限的变量与具有进程范围全局访问权限的变量。

关于c++ - 函数如何访问矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63791670/

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