在c++ 怎樣將一個integer放入string

2007-11-28 2:46 am
例如
string printSS;
for (int e = 0; e < copyGuesse; e++){

printSS += e; //我想將e的數放入去 可以怎做還是不能做
}

回答 (1)

2007-11-28 4:20 am
✔ 最佳答案
string printSS = ""; // should initialize first
char buffer[1024]; // create a char* buffer
for (int e = 0; e < copyGuesse; e++)
{
itoa(e, buffer, 10); // convert int to char*
string e_str = buffer; // convert char* to string
printSS += e_str;
}


收錄日期: 2021-04-13 14:35:21
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20071127000051KK02549

檢視 Wayback Machine 備份