C++ 菜鸟总数:Boost 和 std 的文件 I/O 问题

Total C++ Noob: File I/O Problems with Boost and std

提问人:Gromulus-Romulus 提问时间:8/1/2020 更新时间:8/1/2020 访问量:78

问:

我正在尝试进行夏季模拟项目,但我似乎无法启动文件 I/O。这是我的代码:

std::string line;
std::ifstream F;

int M = 0;    // Model Parameter //

if (F.open (fname)) // Error 1
    std::cout << "Parsing File...";

else {
    std::cout << "***Parsing - ERROR!***" << std::endl;
    std::cout <<"Invalid filename passed to Parsing::ReadData" << std::endl;
    std::cout << "fname = " << fname << " : Can't open file!" << std::endl;
    throw 2;
}

std::getline (F, line);

std::vector<std::string> *result;
boost::split(result, line, boost::is_any_of(":")); // Errors 2 and 3

// Read Number of Metabolites
M = std::atoi(result[1]);  // Error 4

std::cout << "M = " << M << std::endl;

F.close();

到目前为止,从我在网上读到的内容来看,这对我来说似乎很简单。如果我应该提供任何澄清,请告诉我。我在编译和执行时收到所有这些错误:

In file included from test_parsing.cpp:11:
./Parsing_Engine.h:72:6: error: value of type 'void' is not contextually
      convertible to 'bool'
        if (F.open (fname))
            ^~~~~~~~~~~~~~
./Parsing_Engine.h:85:2: error: use of undeclared identifier 'boost'
        boost::split(result, line, boost::is_any_of(":"));
        ^
./Parsing_Engine.h:85:29: error: use of undeclared identifier 'boost'
        boost::split(result, line, boost::is_any_of(":"));
                                   ^
./Parsing_Engine.h:88:22: error: implicit instantiation of undefined template
      'std::__1::vector<std::__1::basic_string<char>,
      std::__1::allocator<std::__1::basic_string<char> > >'
        M = std::atoi(result[1]);
                            ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:216:28: note: 
      template is declared here
class _LIBCPP_TEMPLATE_VIS vector;

对于 F.open 错误,我不明白为什么 void 没有被解释为 false。对于 Boost 错误,我不明白为什么会发生这种情况,因为我使用 brew 安装了库。我不明白结果的隐式实例化是什么意思,尽管我认为如果我能得到提升,这个错误就会消失。

关于我做错了什么,有什么建议吗?另外,对不起 - 我不确定这是否是堆栈溢出帖子的 TMI。

C++ 解析 Boost IO STD

评论

1赞 stateMachine 8/1/2020
std::ifstream::open不返回任何东西,你确定你不是故意的吗?如果文件已打开并与流对象关联,则返回后者。您还可以通过 检查流的错误标志。std::ifstream::is_opentruestd::ios::good
0赞 Gromulus-Romulus 8/1/2020
我想这绝对是我的意思。我假设C++的.open()会像C的fopen一样工作,它会返回一个文件指针或NULL。

答:

3赞 Thomas Sablik 8/1/2020 #1

std::basic_fstream<CharT,Traits>::open 的返回类型为 。您不能将其用作条件。 和 是 类型的值。您无法将 转换为 。voidfalsetrueboolvoidbool

您可以将这些行改写为

std::string line;
std::ifstream F(fname);

if (F)
    std::cout << "Parsing File...";
else {
    std::cout << "***Parsing - ERROR!***" << std::endl;
    std::cout <<"Invalid filename passed to Parsing::ReadData" << std::endl;
    std::cout << "fname = " << fname << " : Can't open file!" << std::endl;
    throw 2;
}

错误 2 和 3 可能是由于缺少 include 指令引起的。您必须包括 boost 标头。

result是指向字符串向量的指针。 等价于,其类型为字符串向量。 需要 C 字符串作为唯一的参数。可能你想要result[1]*(result + 1)std::atoi

std::vector<std::string> result;
boost::split(result, line, boost::is_any_of(":"));

// Read Number of Metabolites
M = std::stoi(result[1]);

std::stoi取 a 并将其转换为 。std::stringint