string使用方法

2021-08-16 09:27:13 字數 681 閱讀 5872

# include

# include

using namespace std;

void test01()

//賦值操作

void  test02()

//取值操作

void test03()

cout << endl;

//at成員函式

for(int i = 0; i < s1.size(); i++)

cout << endl;

//區別:如果訪問越界,直接掛掉

//at方式訪問越界會拋異常out_of_range

trycatch(...)

}//拼接操作

void test04()

//查詢和替換

//find從前往後

//rfind從後往前

void test05()

//string替換

void test06()

//string比較

//compare >返回1 < 返回-1 =返回0

void test07()

else

}//子串操作

void test08()

//插入操作和刪除操作

void test09()

int main(int argc, char *argv)

string 型別的使用方法

string a hello world string b a.substring 6 獲取下標為6以後的全部字元。string c a.substring 6,2 獲取下標為6以後的2個字元。console.writeline b console.writeline c string d a.in...

C 中string 的基本使用方法

本人整理了string的基本基本使用方法,希望自己能熟練使用這些方法,也希望能幫助和我一樣的c 初學者。console.writeline 字串比較 string a abc string b abc console.writeline a.compareto b console.writeline...

C 中string類的使用方法

如果所比較的兩個string 相等,則返回0 操作string 大於引數string,返回 正數 操作string 小於引數string,返回負數。1 比較操作string 與 str 或c string ptr int compare const basic string str const in...