如果p是指针,& p是什么?

时间:2014-06-16 19:46:53

标签: c++ pointers memory-address

我有关于指针和地址的问题,我搜索过并找不到信息。

int* p = new int;
*p = 5;
std::cout << p; // Output the address of p.
std::cout << *p; //Output the value pointed by p.
std::cout << &p; // Output a address, but what address is that?

如果p是指针,究竟是什么&amp; p?

对不起英文。

1 个答案:

答案 0 :(得分:2)

&p给出指针p的地址。