摘要:
1.二级指针 #include <iostream> #include <windows.h> #include <string> using namespace std; int main() { int guizi2 = 888; //存有私密文件的第二个柜子; int* guizi1 = &g 阅读全文
摘要:
#include <iostream> #include <string> #include <windows.h> using namespace std; int main() { int girl = 19; int boy = 21; int const* p1 = &girl; //不能修 阅读全文