0

新问题

boost::tokenizer<> token(line);标记小数点!我怎样才能阻止这种情况发生?

下面以前的问题现在已经解决了。

我正在尝试将字符串流中的值抓取到双精度向量中。

std::ifstream filestream;
filestream.open("data.data");
if(filestream.is_open()){
    filestream.seekg(0, std::ios::beg);

    std::string line;
    std::vector<double> particle_state;
    particle_state.resize(6);
    while(filestream >> line){

        boost::tokenizer<> token(line);

        int i = -1;
        for(boost::tokenizer<>::iterator it=token.begin(); it!=token.end(); ++it){
            std::cout << *it << std::endl; // This prints the correct values from the file.

            if(i == -1){
                // Ommitted code
            }

            else{
                std::stringstream ss(*it);
                ss >> particle_state.at(i); // Offending code here?
            }
            i ++;
        }
        turbovector3 iPos(particle_state.at(0), particle_state.at(1), particle_state.at(2));
        turbovector3 iVel(particle_state.at(3), particle_state.at(4), particle_state.at(5));
        // AT THIS POINT: cout produces "(0,0,0)"
        std::cout << "ADDING: P=" << iPos << " V=" << iVel << std::endl;

    }


    filestream.close();
}

输入文件内容:

electron(0,0,0,0,0,0);
proton(1,0,0,0,0,0);
proton(0,1,0,0,0,0);

有关 turbovector3 的更多信息:

turbovector3是一个数学向量类。(重要的是它可以工作 - 本质上它是一个包含 3 个项目的向量。它使用带有三个双精度的构造函数进行初始化。)

提前感谢您的帮助!

编辑代码修改:

std::stringstream ss(*it);
if(ss.fail()){
  std::cout << "FAIL!!!" << std::endl; // never happens
}
else{
  std::cout << ss.str() << std::endl; // correct value pops out
}
double me;
ss >> me;
std::cout << "double:" << me << std::endl; // correct value pops out again
particle_state.at(i) = me; // This doesn't work - why?
4

2 回答 2

1

您是否i在省略的代码中增加?如果不是,您的else子句永远不会被调用。尝试输出stringstream缓冲区内容:

  std::cerr << ss.str();

还要检查读取是否ss实际失败:

  if (ss.fail())
      std::cerr << "Error reading from string stream\n";
于 2013-03-05T17:32:21.107 回答
0

解决方案!我侥幸找到了这个网站:链接

解决方案是将标记器更改为:

boost::char_delimiters_separator<char> sep(false,"(),;");
boost::tokenizer<> token(line,sep);

现在它起作用了!

于 2013-03-05T18:05:27.083 回答