码迷,mamicode.com
首页 >  
搜索关键字:string类的实现    ( 29个结果
C++中String类的实现
#pragma once #include #include #define _SIZE_ 100 using namespace std; class Count { public: Count() :count(1){} void add() { count++; } void dec()...
分类:编程语言   时间:2015-06-08 09:48:04    阅读次数:154
String类的实现
CString类 strCmp strcpy strcat strlen
分类:其他好文   时间:2015-05-17 18:41:19    阅读次数:112
C++之string的底层真的是用char数组来实现的么?
一、引言遇到一个问题:使用加密库对数据进行加密,得到密文,使用string进行保存并传输,然后可以正确解密出来,但是使用string.c_str()进行参数传递则无法正确解密出明文。原因是:密文中有个字节是0,导致传参数时char数组被截断,但是使用string为什么不会截断呢,string类的实现...
分类:编程语言   时间:2015-03-16 19:04:54    阅读次数:209
算法与数据结构基础2:String类的实现
废话少说,拒绝前奏,直接高潮,且看代码: // String.h #include #include #pragma warning(disable : 4996) using namespace std; class String { public: // **************************************************************...
分类:编程语言   时间:2014-11-25 07:07:46    阅读次数:163
c++中string类的源代码
一:回顾 (1)c++中的string类是在面试中和笔试中经常考的题目; (2)c++中的string类和fstream类合起来是处理外部数据的利器; (3)string类经常用到find find_first_of find_first_not_of find_last_of find_last_not_of substr replace等,以及联合使用来达到java中的split和tri...
分类:编程语言   时间:2014-11-10 13:52:41    阅读次数:297
String类的实现
String类的实现...
分类:其他好文   时间:2014-10-15 15:00:20    阅读次数:203
【c++常见问题】-写一个string实现
一个string类的实现必须很快速写出来。 1 class String 2 { 3 public: 4 String(const char *str = NULL);// 普通构造函数 5 String(const String &other); //拷贝构造函数 6 ...
分类:编程语言   时间:2014-10-15 10:54:00    阅读次数:199
strcpy函数和string类的实现
1 strcpy函数实现 void* memcpy1(void *dst,const void *src,int count){ assert(dst != NULL && src!= NULL && count>=0); void *temp = dst; char *pdst = (char*)dst; char *psrc = (char*)src; if(pdst>=psrc...
分类:其他好文   时间:2014-09-18 09:48:43    阅读次数:188
string类的实现
mystring.h #ifndef _MYSTRING_H_ #define _MYSTRING_H_ #include #include class mystring { friend std::ostream &operator<...
分类:其他好文   时间:2014-09-06 09:49:13    阅读次数:214
29条   上一页 1 2 3
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!