使用boost :: lexical_cast <double>(string)</double>

时间:2013-03-28 22:17:43

标签: c++ boost lexical-cast

我是初学者,需要解释为什么这不起作用:

string myArray[620223];
//myArray is then populated with a while loop using ifstream and getline
string myString = myArray[9];
double myValue;

try {
    myValue = boost::lexical_cast<double>(myString);
} 
catch(boost::bad_lexical_cast const&) {
    myValue = 0;
}

myArray [9]非零,但结果double始终为零。任何帮助将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:2)

由于代码看起来不错,这是一个有根据的猜测。 myArray[9]第十个数组元素。 myArray[0]是第一个。你真的想要第九个元素myArray[8]