作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
<分区>
以这个简单的程序为例:
#include <fstream>
int main()
{
std::ifstream in(".");
int x;
if (in)
in >> x;
}
在 Redhat 6、gcc 4.4.7 上运行没有错误
在 Ubuntu 14.04 LTS 上,gcc 4.8.2 运行没有错误
在 Redhat 7 上,gcc 4.8.2 我得到:
terminate called after throwing an instance of 'std::ios_base::failure'
what(): basic_filebuf::underflow error reading the file
Aborted (cored dumped)
我认为这与: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984
但是,我不明白为什么它可以在 Ubuntu 上运行。
想法?
我有一个名为 Stream 的自定义类 class Stream public: Stream& operator Stream& operatorstream);
这个问题在这里已经有了答案: Unexpected exception in std::ifstream (1 个回答) 关闭 7 年前。 以这个简单的程序为例: #include int mai
我是一名优秀的程序员,十分优秀!