程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> 深入解析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;
    }

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved