c++對應的標頭檔案:
#include
c對應的標頭檔案:
#include
1)string s;//宣告s字串
2)string s(str);//str賦給s
3)string s(str,stridx) //將字串str內「始於位置stridx」的部分當作字串的初值
4)string s(str,stridx,strlen) //將字串str內「始於stridx且長度頂多strlen」的部分作為字串的初值
5)string s(num,c) //生成乙個字串,包含num個c字元
6)string s(beg,end) //以區間beg;end(不包含end)內的字元作為字串s的初值
7)s.~string() //銷毀所有字元,釋放記憶體
string與string標頭檔案
先來段 我是在vs2012上實驗的 include stdafx.h include include include using namespace std int tmain int argc,tchar argv cout endl for rit mapstudent.rbegin rit m...
string標頭檔案與cstring標頭檔案
首先說string的標頭檔案 1 包裝了std的c 標頭檔案 2 舊的c標頭檔案 3 舊c標頭檔案的std版本,切記,這不是cstring的標頭檔案 詳見effective c 的第49條 再說cstring的標頭檔案 注 vc9編譯環境下 1 非mfc版本,控制台程式就用這個 2 mfc版本,需要...
String的substring 的用法總結
substring 方法返回字串的子字串。1.public string substring int beginindex 擷取 索引位置beginindex 包括 到 字串最後 2.public string substring int beginindex,int endindex 擷取 索引位...