C++將數字轉為字串,並拼接

pengfoo發表於2014-05-11

發現c/c++中對字串的處理,沒有更高階語言中那麼方便,下面貼出一個程式碼段:

 

// test.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>

#include <string>
using namespace std;



int _tmain(int argc, _TCHAR* argv[])
{
	string subjectiveImgName ="subjectiveImg";
	string jpg =".jpg";
	char buffer[10]; 
	string filename;

	for(int i =0;i<3;i++)
	{
		
			     
		sprintf(buffer,"%d",i); 
		
		string tmp = string(buffer);
		
		filename+= subjectiveImgName;
		filename+=tmp;
		
		cout<<filename <<endl;
		filename = "";
	} 

	return 0;
	
}    



相關文章