随着我最近升级到 Mac OS X 10.9,默认的标准 C++ 库从 libstdc++ 更改为 libc++。从那时起,我观察到下面代码示例中记录的 stringstream 运算符>>(double) 的意外行为。
总之,当双精度值后跟一个字母时,libc++ 似乎在从字符串流中提取双精度值时存在问题。
我已经检查了标准(2003),但我找不到任何具体信息,如果提取在这种情况下是否可以工作。
因此,无论这是 libc++ 还是 libstdc++ 中的错误,我都将不胜感激。
#include <sstream>
#include <iostream>
using namespace std;
void extract_double(const string & s)
{
stringstream ss;
double d;
ss << s;
ss >> d;
if(!ss.fail())
cout << "'" << ss.str() << "' converted to " << d << endl;
else
cout << "'" << ss.str() << "' failed to convert to double" << endl;
}
int main()
{
extract_double("-4.9");
extract_double("-4.9 X");
extract_double("-4.9_");
extract_double("-4.9d");
extract_double("-4.9X");
}
c++ --stdlib=libc++ streamtest.cxx
用给编译代码
'-4.9' converted to -4.9
'-4.9 X' converted to -4.9
'-4.9_' converted to -4.9
'-4.9d' failed to convert to double
'-4.9X' failed to convert to double
c++ --stdlib=libstdc++ streamtest.cxx
用给编译代码
'-4.9' converted to -4.9
'-4.9 X' converted to -4.9
'-4.9_' converted to -4.9
'-4.9d' converted to -4.9
'-4.9X' converted to -4.9
编译器版本是
$ c++ --version
Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin13.0.0
Thread model: posix