我尝试了cppreference.com的代码,但似乎e.code()
不存在:
#include <iostream>
#include <system_error> // std::make_error_condition, std::ios_errc
int main () {
std::cin.exceptions (std::ios::failbit|std::ios::badbit);
try {
std::cin.rdbuf(nullptr); // throws
} catch (std::ios::failure& e) {
std::cerr << "Fehler: ";
if (e.code() == // <<< ERROR: no e.code() ???
std::make_error_condition(std::io_errc::stream))
std::cerr << "stream\n";
else
std::cerr << "other\n";
}
}
我的 g++-6.2 和 g++-5和clang-3.9(在 linux 上)都说相同:
error: ‘class std::ios_base::failure’ has no member named ‘code’
if (e.code() == std::make_error_condition(std::io_errc::stream))
^~~~
即使是未更改的示例也无法为我编译
#include <iostream>
#include <fstream>
int main()
{
std::ifstream f("doesn't exist");
try {
f.exceptions(f.failbit);
} catch (const std::ios_base::failure& e)
{
std::cout << "Caught an ios_base::failure.\n"
<< "Explanatory string: " << e.what() << '\n'
<< "Error code: " << e.code() << '\n';
}
}
和
$ g++-6 etest.cpp -o etest.x
etest.cpp: In function ‘int main()’:
etest.cpp:12:42: error: ‘const class std::ios_base::failure’ has no member named ‘code’
<< "Error code: " << e.code() << '\n';
我试过g++-6
, g++-5
, 添加-std=c++1y
, -std=c++98
, 相同的结果。(不过,我相信后者还可以)。
这真的很奇怪,因为网站上的在线编译器确实会编译它。
我从-E
(预处理器)运行中得到的单一提示:
class ios_base
{
# 246 "/usr/include/c++/6/bits/ios_base.h" 3
public:
# 276 "/usr/include/c++/6/bits/ios_base.h" 3
class failure : public exception
{
public:
这看起来好像failure
确实不是源自system_error
,这就解释了为什么没有code()
。但为什么?它的普通 Ubuntu g++,它的 g++-6,它的 C++14 ......我没有编译器调整,链接,黑客......
好像有点用
#if _GLIBCXX_USE_CXX11_ABI
在附近。但这会干扰吗?如果是这样,我该如何使它不受干扰?
有谁知道这里可能发生了什么?