2023年4月9日
摘要: 1.不要返回局部变量的地址 1 int* func() 2 { 3 int a = 10; 4 return &a; 5 } 6 int main() 7 { 8 int* p=func(); 9 cout << *p << endl; 10 cout << *p << endl; 11 retur 阅读全文
posted @ 2023-04-09 21:38 小凉拖 阅读(10) 评论(0) 推荐(0) 编辑