- 1、本文档共26页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CSTL示例.
string:
1、
#includeiostream
#includestring
using namespace std;
void main()
{
//用const char * 构造strText对象
string strText(This is a test);
//在strText的末尾附加一个字符串!
strText.append(!);
//at()返回字符串在指定索引处的字符的引用
//如果给定的索引值超出了字符串的有效长度,则抛出out_of_range异常
char ch = strText.at(2);
ch = I;
//将字符串strText以C风格的字符数组形式返回
const char *cstr = strText.c_str();
//data()返回指向自己第一个位置的指针
const char *firstCh = strText.data();
//判断字符串是否为空,即使字符串的长度是否为0
//coutstrText.empty();
//basic_string erase( size_type index = 0, size_type num = npos )
//删除从index索引开始的num个字符,返回*this
//strText.erase(7, 2).erase(5, 3);
//返回字符w在字符串strText中第一次出现的位置,如果没找到,则返回string::npos
int loc = strText.find(w);
if(loc != string::npos)
{
coutfind it! position: locendl;
}
else
{
coutcant find itendl;
}
//查找在字符串中第一个与str中的某个字符匹配的字符,返回它的位置。有哪些信誉好的足球投注网站从index开始,如果没找到就返回string::npos
int loc2 = strText.find_first_of(wwT, 0, strText.length());
//substr()返回本字符串的一个字串,
string rs = strText.substr(4);
string str1 = First string;
string str2(Second string);
//交换两个字符串str1和str2的内容
str1.swap(str2);
//length()返回字符串中字符的长度
coutstrText.length()endl;
//注意:字符串string对象并不是以\0作为结束符,并且string对象根本就没有结束符
}includeiostream
#includestring
using namespace std;
void main()
{
//string构造函数
string a = string();
string b = string(15,s);
const char *str = Oh,my good honey!;
string c = string(str);
string d = string(str,10);
string e = string(b,0,10);
string f = string(c.begin(),c.end());
//测试赋值结果
cout String a: a endl;
cout String b: b endl;
cout String c: c endl;
cout String d: d endl;
cout String e: e endl;
cout String f: f endl;
cout endl;
//在字符串的末尾添加文本
a.append(c);
b.append(str);
c.append(str,10);
d.append(b,2,11);
e.append(4,q);
f.append(a.begin(),a.end());
//测试文本添加结果
cout String a: a endl;
cout String b: b endl;
cout String c: c endl;
cout String d: d endl;
cout String e: e endl;
cout String f: f endl;
cout endl;
文档评论(0)