Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
int **是指向 int 指针的指针,而不是 2d 数组。
int **
因为 int ** 是“指向 int 的指针”。它与“指向二十个整数的指针”不同。因此,您的第二个代码与尝试传递您家所在街道的地址相同,而不是传递具有您家地址的人的地址。
您应该使用数组表示法,而不是指针表示法,因为数组不是指针:
cout << "print 2" << a[11][11] << endl;