我正在使用ifstream
,但是该程序未从输入文件中读取任何内容。该程序在macOS 10.14中运行,我的编译器是clang 10.0.1,我将源代码和输入文件放在同一文件夹中。
std::string contents;
std::vector<std::string> ContainerOfString;
int main(){
std::ifstream ifs;
ifs.open("test.txt");// test.txt is in the same folder with the source code
if(ifs){
while(ifs>>contents){
ContainerOfString.push_back(contents);
}
for(auto &i:ContainerOfString){
std::cout<<i<<" ";
}
}
return 0;
}
答案 0 :(得分:0)
#include <fstream>
#include <string>
#include <vector>
#include <iostream>
std::string contents;
std::vector<std::string> ContainerOfString;
int main()
{
std::ifstream ifs;
ifs.open("test.txt"); // test.txt is in the same folder with the source code
if (ifs)
{
while (ifs >> contents)
{
ContainerOfString.push_back(contents);
}
for (auto &i : ContainerOfString)
{
std::cout << i << " ";
}
}
else
{
std::cout << "file not found" << std::endl;
}
return 0;
}
具有一种机制来检查您的代码是否找到了文本文件。您的文本文件拼写可能错误,或者与主代码不在同一目录中,或者其他原因阻止了文件的读取。还要检查文本文件是否为空,因为它也不会从您的代码中产生任何输出。