//string.h
//******************************//
//**** made by zhuxianfeng *****//
//** last edited at 2007-2-9 ***//
//******************************//
#ifndef string_h
#define string_h
#include
#include
#include
using namespace std;
class string;
#endif
//end string.h
//string.cpp
#include"string.h"
string::string()
string::string(const char *s)
string::string(const string &s)
string::~string()
const int string::getlength() const
ostream& operator<<(ostream &output, const string &s)
string& string::operator =(const char *s)
string& string::operator =(const string &s)
string string::operator +(const string &s)
string string::substr(const int begin, const int length)
string& string::replace(const int begin, const int length, const char* s)
else
return *this;
}//end string.cpp
String字串類實現
1 class string 2 建構函式string string const char str else string str hell0 3 析構函式string string 4 拷貝構造string string const string other string s1 hello str...
關於字串 string類
1 字串 字串是儲存在記憶體的連續位元組中的一系列字元。儲存在連續位元組中的一系列字元意味著可以將字串儲存在char陣列中,其中每個字元都位於自己的陣列元素中。什麼時候char陣列是string型別?char dog 8 not a string char cat 8 a string 只有第二個陣...
String字串工具類
1 using system 23 namespace sam.oa.common425 26 處理字串 27 28 字串29 30 public static string processstring object obj 3134 35 判斷字串是否為日期 36 37 日期字串 38 39pub...