#include<iostream>
#include<assert.h>
#include<malloc.h>
#defineCAPACITY3
usingnamespacestd;
classString
{
public:
String(char*str="")
:_str((char*)malloc(strlen(str)+1)),
_size(strlen(str))
{
strcpy(_str,str);
_capacity=_size+1;..
分类:
其他好文 时间:
2016-03-11 22:32:35
阅读次数:
183