从文件中读取固定点的固定双打并转换为长
Reading fixed doubles with fixed point from file and convert into long
我正在从文件中读取美元价格。范例
asset_jsld 40.54
asset_sxd 40.80
我想要一个以这些价格为键的 map
。由于 float
或 double
小于 ideals 键,我将我的值转换为美分,并将它们存储为 long
。 words
是原文件按列string
的列表。
using boost::spirit::qi::parse;
// ...
if (!parse(words[1].begin(), words[4].end(), double_, price_d))
// Error handeling
long price = boost::numeric_cast<long>(price_d * 100.0);
问题是 double
是 40.80 而 long
是 4079
。这个舍入误差是否来自 numeric_cast
?有没有数值稳定的替代品?
如果您想要一致性,请不要对浮点数进行数学运算。将值作为字符串读取,删除点并将其解析为 long
.
Is floating point math broken?
我正在从文件中读取美元价格。范例
asset_jsld 40.54
asset_sxd 40.80
我想要一个以这些价格为键的 map
。由于 float
或 double
小于 ideals 键,我将我的值转换为美分,并将它们存储为 long
。 words
是原文件按列string
的列表。
using boost::spirit::qi::parse;
// ...
if (!parse(words[1].begin(), words[4].end(), double_, price_d))
// Error handeling
long price = boost::numeric_cast<long>(price_d * 100.0);
问题是 double
是 40.80 而 long
是 4079
。这个舍入误差是否来自 numeric_cast
?有没有数值稳定的替代品?
如果您想要一致性,请不要对浮点数进行数学运算。将值作为字符串读取,删除点并将其解析为 long
.
Is floating point math broken?