码迷,mamicode.com
首页 >  
搜索关键字:简单模拟stl库中string的实现    ( 1个结果
简单模拟STL库中string的实现
#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
1条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!