#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
CString类 strCmp strcpy strcat strlen
分类:
其他好文 时间:
2015-05-17 18:41:19
阅读次数:
112
一、引言遇到一个问题:使用加密库对数据进行加密,得到密文,使用string进行保存并传输,然后可以正确解密出来,但是使用string.c_str()进行参数传递则无法正确解密出明文。原因是:密文中有个字节是0,导致传参数时char数组被截断,但是使用string为什么不会截断呢,string类的实现...
分类:
编程语言 时间:
2015-03-16 19:04:54
阅读次数:
209
废话少说,拒绝前奏,直接高潮,且看代码:
// String.h
#include
#include
#pragma warning(disable : 4996)
using namespace std;
class String
{
public:
// **************************************************************...
分类:
编程语言 时间:
2014-11-25 07:07:46
阅读次数:
163
一:回顾
(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类的实现必须很快速写出来。 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
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
mystring.h
#ifndef _MYSTRING_H_
#define _MYSTRING_H_
#include
#include
class mystring
{
friend std::ostream &operator<...
分类:
其他好文 时间:
2014-09-06 09:49:13
阅读次数:
214