萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> 深入解析int(*p)[]和int(**p)[]

深入解析int(*p)[]和int(**p)[]

以下是對int(*p)[]和int(**p)[]的使用進行了詳細的分析介紹,需要的朋友可以參考下  

1. int(*p)[10]:
根據運算符的結合律,()的優先級最高,所以p是一個指針,指向的一個維度為10的一維數組。
p一個指向數組的某一行

復制代碼 代碼如下:
int a[1][4]={1,2,3,4};
    int (*p)[4] = a;//p point to the row of array a
    for(int i=0;i<4;i++)
    {
     cout<<*((*p)+i)<<" ";
    }


2. int(**q)[10]
這個的意義:q是一個指針,指向的元素就是1.中的p.
下面給一個例子:

復制代碼 代碼如下:


#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
    int a[2][2]={1,2,3,4};
    int (*p)[2] = a;//p point to the row of array a
    for(int i = 0;i<2;i++)//output matrix using p
    {
            for(int j = 0;j<2;j++)
            {
                    cout<<*(*(p+i)+j)<<" ";
            }
            cout<<endl;
    }
    int (**q)[2] = &p;//q point to p
    for(int i = 0;i<2;i++)//output matrix using q
    {
            for(int j = 0;j<2;j++)
            {
                    cout<<*(*(*q+i)+j)<<" ";
            }
            cout<<endl;
    }

    getchar();
    return 0;
}

copyright © 萬盛學電腦網 all rights reserved