二维数组指针作为函数参数传递

Posted いいえ敗者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二维数组指针作为函数参数传递相关的知识,希望对你有一定的参考价值。

以前二维数组作为函数参数传递我都是这么写的void def(int a[][10])。传递一个二维数组a,(其中第二维要确定大小)其实想一想挺合理的...

后来,发现还有这种写法 void def(int(*a)[10]);

/* ***********************************************
Author        :guanjun
Created Time  :2017/3/18 13:32:52
File Name     :33.cpp
************************************************ */
#include <bits/stdc++.h>
#include <windows.h>
using namespace std;
void dfs(int (*a)[10]){
    for(int i=0;i<5;i++){
        for(int j=0;j<10;j++){
            cout<<a[i][j]<<" ";
        }
    }
}
void dfs2(int a[][10]){
    for(int i=0;i<5;i++){
        for(int j=0;j<10;j++){
            cout<<a[i][j]<<" ";
        }
    }
}
int main(){

    int (*a)[10]=new int[5][10];
    for(int i=0;i<5;i++){
        for(int j=0;j<10;j++){
            a[i][j]=i*j;
        }
    }
    dfs(a);
    dfs2(a);
    delete []a;
    return 0;
}

其实,还有这种次而发 void def(int **a) 

我提的弱智问题...http://stackoverflow.com/questions/43018146/what-is-the-difference-between-the-two-wording-when-the-two-dimensional-array-is/43018294?noredirect=1#comment73125242_43018294

以上是关于二维数组指针作为函数参数传递的主要内容,如果未能解决你的问题,请参考以下文章

java 如何将二维数组的一列作为参数传进去 求代码

c语言中怎么用二维数组作为函数参数

C语言函数传递二维数组

如何在汇编函数中将元素数组作为参数传递时转发ARM寄存器的地址指针

C-二维数组作为函数参数, 字符数组

C语言中如何将二维字符数组作为函数参数引用传递