摘要:
1 /* Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc. 2 This file is part of the GNU C Library. 3 4 The GNU C Library is fr... 阅读全文
摘要:
#include using namespace std; /*** *在类中有指针变量的时候除了smartpointer之外 *第二种控制方法就是“复制值类型”,即在构造函数以及复制构造函数的时候,不再仅复制指针同时根据原来的引用分配新的值并将新的指针指向该变量 **/ int main() { int n=9; int &refn... 阅读全文
摘要:
#includeusing namespace std;// private class for use by HasPtr only class U_Ptr { /** *因为在这个例子中所有的复制都是复制的“变量的常引用”,所以将U_Ptr这个变量的use增加,其他的Has... 阅读全文