您好我是C ++新手,我遇到了这个问题。我查看了很多在线资源,但我找不到答案。请帮忙。谢谢。
std::ifstream openfile;
openfile.open("file.txt");
if(openfile.is_open()){
std::cout<<"opned"<<std::endl;
}
else{
std::cout<<"not open"<<std::endl;
}
输出始终“未打开”
答案 0 :(得分:0)
使用xCode的目录路径出现问题。 读完这篇文章后我才意识到:
C++ Program in Xcode not outputting simple text file using outFile