摘要: 指针类型 #include <iostream> int main(){ int i = 1; int* a = &i; int *b = &i; int * c = &i; std::cout << "a="<<a << std::endl; // a=0x7ffeb29cf6ac std::co 阅读全文
posted @ 2022-02-18 07:55 方诚 阅读(39) 评论(0) 推荐(0) 编辑