使用STL string连接字符串

连接字符串,可以使用+=,也可以使用append

 

// cat_string.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"


#include 
#include 

int _tmain()
{
     using namespace std;
	 string strSample1("Hello");
	 string strSample2("String");
	 //Concatenate
	 strSample1 += strSample2;
	 cout<


 

使用STL string连接字符串_第1张图片

你可能感兴趣的:(C/C++)