码迷,mamicode.com
首页 >  
搜索关键字:string类的写法    ( 2个结果
string类(c++)
string类是c++默认提供的,但是了解string类的写法也是非常重要的,面试中有许多关于string类的题目,string类能够考察c++类和对象的掌握程度,一定程度上也考察了面试者的编程能力。下面是string类的一些基本功能,由于面试的时间很短,在这极短的时间内全部实现string类的功..
分类:编程语言   时间:2016-03-04 02:05:53    阅读次数:227
C++:【常见面试题】String类的写法
#include<iostream> #include<stdlib.h> usingnamespacestd; classString { public: String(constchar*str) :_str(newchar[strlen(str)+1])//\0 { strcpy(_str,str); } String(constString&s) :_str(NULL)//若不赋空则为随机值,随机值_str析构函数释放指针..
分类:编程语言   时间:2016-01-24 19:52:34    阅读次数:207
2条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!