程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> 淺析int*p[ ]與int(*p)[ ]的差別

淺析int*p[ ]與int(*p)[ ]的差別

編輯:關於C++

淺析int*p[ ]與int(*p)[ ]的差別。本站提示廣大學習愛好者:(淺析int*p[ ]與int(*p)[ ]的差別)文章只能為提供參考,不一定能成為您想要的結果。以下是淺析int*p[ ]與int(*p)[ ]的差別正文


舉例解釋:
1)int* p[2] 是一個指向int型的指針數組,即:p是包括兩個元素的指針數組,指針指向的是int型。
可以如許來用:

<SPAN >#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 >#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 >#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