程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
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[2] 是一個指向int型的指針數組,即:p是包含兩個元素的指針數組,指針指向的是int型。
    可以這樣來用:

    復制代碼 代碼如下:
    <SPAN style="BACKGROUND-COLOR: rgb(255,255,255)">#include <iostream>
    using namespace std;
    int main(int argc, char* argv[])
     {
    int* p[2];
    int a[3] = {1, 2, 3};
    int b[4] = {4, 5, 6, 7};
    p[0] = a;
    p[1] = b;
    for(int i = 0; i < 3; i++)
    cout << *p[0] + i;// cout << **p + i;
    cout << endl;
    for(i = 0; i < 4; i++)
    cout << *p[1] + i;// cout << **p + i;
    return 0;
    }</SPAN>


    2)對於 int (*p)[2], 它相當於一個二維數組的用法,只是它是一個n行2列的數組,可以這樣來用:

    復制代碼 代碼如下:
    <SPAN style="BACKGROUND-COLOR: rgb(255,255,255)">#include <iostream>
    using namespace std;
    void main() {
    int (*p)[2];
    int b[3][2] = {{1, 2}, {3, 4}, {5, 6}};
    p = b;
    for(int i = 0; i < 3; i++) {
    for(int j = 0; j < 2; j++) //cout << p[i][j]; //cout << *(*(p+i)+j);
    cout << endl;
    }
    }</SPAN>


    注意:
    (1)為行數確定、列數不確定,即為2*n型的。
    (2)為n*2型的數組的指針用法,即行數不確定、列數確定。
    對於(1)其等價形式如下:

    復制代碼 代碼如下:
    <SPAN style="BACKGROUND-COLOR: rgb(255,255,255)">#include <iostream>
    using namespace std;
    void main() {
    int** array;
    array = new int* [2];
    int a[3] = {1, 2, 3};
    int b[4] = {4, 5, 6, 7};
    array[0] = a; // *array = a;
    array[1] = b; // *(array+1) = b;
    for(int i = 0; i < 3; i++) cout << array[0][i];// cout << *array[0] + i;
    cout << endl;
    for(int j = 0; j < 4; j++) cout << array[1][j];// cout << *array[1] + j;
    }</SPAN>


    其實以上用法即這我們常用的動態二維數組的用法。

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