🌈 搜索
📅  最后修改于: 2022-03-11 14:54:59.304000             🧑  作者: Mango
int* p = new int; *p = 25; cout << *p << endl; int* q; q = p; cout << *q;