我想變量,字符串值(ofstream的)文件路徑結合結合如何變量與字符串值
例子:
long phNumber;
char bufPhNumber[20];
ofstream ifile;
cout << "Phone Number: ";
cin >> phNumber;
itoa(phNumber,bufPhNumber,20);
ifile.open("c://" + bufPhNumber + ".txt",ios::out); // error in this line
如何給這個變量(bufPhNumber)與字符串結合( 「C://」 +變量這裏+ 「.TXT」)
你更好的解決方案已在'ofstream'構造函數一個錯字。它仍然是'bufPHNumber'。 – pmr
@pmr:固定。謝謝。 :-) – Nawaz
@Nawaz:謝謝您的回答,但是這不是我想要的,我想用int值並將其轉換爲char,然後在文件路徑中使用它,我不希望使用字符串類型,而不是整型或長 –