摘要:
简单来介绍一下C#深浅拷贝问题 浅拷贝:复制其另一个对象的引用(在堆中使用的是同一个对象的引用); 深拷贝:而逐一复制被复制对象的数据成员的方式称为深复制(在堆中创建新的一块内存空间,使用的不是同一个对象的引用) 创建一个Person类: public class Person { public i 阅读全文
摘要:
The C compiler identification is GNU 7.3.0 The CXX compiler identification is GNU 7.3.0 Detecting C compiler ABI info Detecting C compiler ABI info - 阅读全文