我有关于指针和地址的问题,我搜索过并找不到信息。
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?
对不起英文。
答案 0 :(得分:2)
&p
给出指针p
的地址。