C/C++教程

C++的string类

本文主要是介绍C++的string类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <iostream>
#include <string>

using namespace std;


int main()
{
    int n(20);
    cout << n << endl;
    string a = "dog";
    string b =a + ", cat";
    cout << b << endl;
    string c = a +  "dog" + "cat";
    cout << c << endl;
    //string d = "dog" + "cat"; //错误!!!
	return 0;
}

运行结果:

20
dog, cat
dogdogcat

这篇关于C++的string类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!