C++学习,String类

标准C ++库提供了一个string类,它支持上面提到的所有操作,以及更多的功能。 头文件提供了 std::string 类, 是 C++ 标准库中用于处理字符串的头文件。

 

示例:

#include
#include
using namespace std;


int main () {
   string str1 = "Hello";
   string str2 = "World";
   string str3;
   int  len ;

   str3 = str1;
   cout << "str3 : " << str3 << endl;

   str3 = str1 + str2;
   cout << "str1 + str2 : " << str3 << endl;



   len = str3.size();
   cout << "str3.size() :  " << len << endl;


   return 0;
}

 

函数输出结果:
str3 : Hello
str1 + str2 : HelloWorld
str3.size() :  10

 

你可能感兴趣的:(c++,学习,算法,c语言,linux,服务器,开发语言)