std::stringstream GCC 异常行为
我在 Mac(GCC 4.2)上编译一个简短的小程序时遇到一个非常有趣的问题。下面的函数只会将字符或字符串流式传输到字符串流中,而不会将任何其他内容(int、double、float 等)流式传输。事实上,如果我尝试将 int 转换为字符串,则会设置失败标志。
但是,删除预处理器标志:_GLIBCXX_DEBUG=1
(XCode 中默认为调试模式设置该标志)将产生所需的结果/正确的行为。
这是我正在谈论的简单功能。 value 是 T 类型的模板变量。测试了 int、double、float(不工作)、char 和 strings(工作)。
template < typename T >
const std::string Attribute<T>::getValueAsString() const
{
std::ostringstream stringValue;
stringValue << value;
return stringValue.str();
}
任何想法我做错了什么,为什么这不起作用,或者预处理器标志做了什么使这不再起作用?
谢谢!
I have a very interesting problem with compiling a short little program on a Mac (GCC 4.2). The function below would only stream chars or strings into the stringstream, but not anything else (int, double, float, etc.) In fact, the fail flag is set if I attempt to convert for example an int into a string.
However, removing the preprocessor flag: _GLIBCXX_DEBUG=1
, which is set by default in XCode for the debug mode, will yield the desired results / correct behavior.
Here is the simple function I am talking about. value is template variable of type T. Tested for int, double, float (not working), char and strings (working).
template < typename T >
const std::string Attribute<T>::getValueAsString() const
{
std::ostringstream stringValue;
stringValue << value;
return stringValue.str();
}
Any ideas what I am doing wrong, why this doesn't work, or what the preprocessor flag does to make this not work anymore?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已知的苹果错误。相同的问题:
C++ 调试版本在 Snow Leopard X-Code 中损坏
Xcode 3.2.1 和 C++ 字符串失败!
c++ 中 int 的 ostringstream 问题
Known Apple bug. Same question as:
C++ Debug builds broke in Snow Leopard X-Code
Xcode 3.2.1 and C++ string fails!
ostringstream problem with int in c++