最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
String类的写时拷贝实例
时间:2022-06-25 04:40:13 编辑:袖梨 来源:一聚教程网
实例如下:
代码如下 | 复制代码 |
usingnamespacestd;
classString; ostream& operator<<(ostream &out,constString&s); //引用计数器类 classString_rep { friendclassString; friendostream& operator<<(ostream &out,constString&s); |
public:
代码如下 | 复制代码 |
String_rep(constchar*str ) :use_count(0) { if(str == NULL) { data =newchar[1]; data[0] =' |