C++笔记——标准库类型string
程序员文章站
2022-07-15 13:43:11
...
需加头文件 #include <string>
字符串对象的初始化方法:
#include<string>
using namespace::std;
int main()
{
string a("c++");
string b(a);
string c(4,'a');
cout << a << endl;
cout << b << endl;
cout << c << endl;
string d;
d = a;
if(d.empty())
{
cout << "string d is empty" << endl;
}
else
{
cout << "string d's size is " << d.size() << endl;
}
string e = a + c;
cout << e << endl;
if(e == a)
{
cout << "e equals a" << endl;
}else
{
cout << "e doesn't equal a" << endl;
}
return 0;
}
上一篇: C++标准库中的String类型
推荐阅读
-
Python随手笔记之标准类型内建函数
-
Python标准库笔记(11) — Operator模块
-
C++标准库和标准模板库介绍
-
C语言笔记 14_标准库&assert&ctype&errno&float&limits
-
c/c++ 重载运算符 标准库function的用法
-
《从零开始学Swift》学习笔记(Day 71)——Swift与C/C++混合编程之数据类型映射
-
c++ primer(第五版)学习笔记及习题答案代码版(第十四章)重载运算与类型转换
-
C++ string类型的几个典型应用
-
C++标准库笔记:算法--min/max/swap/iter_swap
-
C++重载运算符和标准模板库实例讲解