std::stringstream GCC 异常行为

发布于 2024-08-08 15:02:52 字数 582 浏览 4 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文