這應該在我的項目目錄中創建一個名爲「tuna.txt」的文件。當我運行它時,它編譯成功,但沒有創建文件。我在使用xcode的mac上。我已經在計算機上搜索了可能已經創建的其他地方,但似乎完全沒有創建該文件。任何想法爲什麼它不起作用?在Xcode上使用C++創建文件
#include <iostream>
#include <fstream>
using namespace std;
int main(void){
ofstream file;
file.open("tuna.txt");
file << "I love tuna and tuna loves me!\n";
file.close();
return 0;
}
你真的需要學習如何使用調試器。 –