摘要: lvalue required as unary ‘&’ operand #include <iostream> struct A { int data_; }; void CreateA(A** a_addr) { *a_addr = new A; } void DestoryA(A* a) { 阅读全文
posted @ 2020-11-27 17:29 cyssmile 阅读(2059) 评论(0) 推荐(0) 编辑