- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
#include <fstream>
#include <iostream>
#include <exception>
int main(int argc, char **argv)
{ try
{ std::ifstream sFile(argv[1]);
sFile.exceptions(std::ios::badbit | std::ios::failbit);
} catch (const std::exception &_r)
{ std::cerr << "exception: " << _r.what() << std::endl;
}
}
如果传入的文件不存在,此代码将使用 g++ 4.5.2 打印出来(是的,我知道这是一个非常旧的版本,但我没有足够的影响力来更改它):
"exception: basic_ios::clear"
使用 Visual C++ 12:
"exception: ios_base::failbit set: iostream stream error"
考虑到系统错误信息在很久以前就已经引入了,我认为这是 Not Acceptable 。
最佳答案
自 C++11 起,std::ios_base::failure
inherits from std::system_error
所以我们应该能够捕获
该异常并立即从中获取错误消息。
#include <cstdlib> // EXIT_SUCCESS, EXIT_FAILURE
#include <fstream> // std::ifstream
#include <iostream> // std::cerr, std::endl
#include <system_error> // std::system_error
int
main()
{
const auto filename = std::string {"/no/such/file.txt"};
try
{
auto istr = std::ifstream {filename};
istr.exceptions(std::ios::badbit | std::ios::failbit);
// ...
istr.close();
}
catch (const std::ios_base::failure& e)
{
std::cerr << "error: " << e.what() << std::endl;
//std::cerr << "error: " << e.code().message() << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
不幸的是,这还不适用于我的 GCC 5.3.0。 catch
永远不会被激活,而是程序核心转储。更糟糕的是,这意味着我们必须 catch
std::exception
,这也将匹配所有其他可能与 I/O 错误无关的异常类型。这真的让我很困扰。
std::strerror(errno)
如果一切都失败了,你可以使用 'ye good ol' errno
并通过 std::strerror
获取人类可读的字符串(这不是线程安全的, 顺便一提)。也不能保证 errno
在错误发生点和您处理异常的点之间没有被清除(或重新分配)。这是因为在 C++ 中,在堆栈展开期间可能会执行任意代码。
#include <cerrno> // errno
#include <cstdlib> // EXIT_SUCCESS, EXIT_FAILURE
#include <cstring> // std::strerror
#include <exception> // std::exception
#include <fstream> // std::ifstream
#include <iostream> // std::cerr, std::endl
int
main()
{
const auto filename = std::string {"/no/such/file.txt"};
try
{
auto istr = std::ifstream {filename};
istr.exceptions(std::ios::badbit | std::ios::failbit);
// ...
istr.close();
}
catch (const std::exception&)
{
std::cerr << "error: " << std::strerror(errno) << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
std::error_code
这个解决方案只比使用 std::strerror(errno)
稍微好一点,但至少它看起来更像 C++11。问题是一样的,只是它是线程安全的。
#include <cerrno> // errno
#include <cstdlib> // EXIT_SUCCESS, EXIT_FAILURE
#include <exception> // std::exception
#include <fstream> // std::ifstream
#include <iostream> // std::cerr, std::endl
#include <system_error> // std::error_code, std::system_category
int
main()
{
const auto filename = std::string {"/no/such/file.txt"};
try
{
auto istr = std::ifstream {filename};
istr.exceptions(std::ios::badbit | std::ios::failbit);
// ...
istr.close();
}
catch (const std::exception&)
{
const auto ec = std::error_code {errno, std::system_category()};
std::cerr << "error: " << ec.message() << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
关于c++ - 如何让标准文件流返回有用的错误消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35190832/
当我开始学习一门新语言时,我总是觉得我没有以实用、标准的方式进行学习。所以这里有一个关于 jQuery 的问题以及我所做的是否可以接受。 我有 3 张图片。 然后我让 jQuery 检测 $('
基本上,我想知道线程是否有用或必要,或者可能更具体地说,您将使用它的用途和情况。我对线程了解不多,也从未使用过它(我主要使用 C#),并且想知道如果使用它们是否会提高性能或稳定性。如果有人愿意解释一下
这个问题在这里已经有了答案: What is The Rule of Three? (8 个答案) 关闭 7 年前。 嘿嘿。我有一个让我很难过的问题。我自定义了一个普通的拷贝构造函数但它只在我初始化
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: Uses for multiple levels of pointer dereferences? 我在 C
我不确定异常在每种语言中的工作方式是否相同,但我使用的是 PHP,我想知道我什么时候做这样的事情: if (!$this->connection[0]->query($this->query)) t
Scala native 是最近发布的,但是他们(现在)使用的垃圾收集器非常rudimentary,因此不适合严肃使用。 所以我想知道:为什么不只将Scala转换为Go (即Scala.js)?这将是
最近,我一直在研究docker及其对SaaS公司的有用性。我花了一些时间学习如何容器化应用程序,并简要了解了什么是docker和容器。我在理解这项技术的实用性时遇到了一些问题。我看过dockercon
我必须根据出现在它们之前的字符串是否是某个关键字“load”从输入文件中读取整数。没有关键数字告诉我们要输入多少个数字。这些数字必须保存到一个数组中。为了避免为扫描的每个附加数字创建和更新新数组,我想
Deferred 对象具有回调池 doneCallbacks、failCallbacks 和 progressCallbacks。 doneCallbacks 和 failCallbacks(以及方法
这个问题在这里已经有了答案: Is there a case where including the same header twice is actually helpful? (6 个答案) 关
我在C++ Programming Language的书上看到了下面的例子 class Ptr { X* operator->( ); }; voide f(Ptr p) { p-
你能不能: template const T &operator[] (unsigned int x) 我的想法是如果你有一个 map如果有一个包装器类可以让您这样做,那就太好了: obj["Int
根据doc这个tutorial , cmp() returns -1 if x y 教程里也说了 cmp() returns the sign of the difference of two nu
我经常读到 It seem that identity monad is useless. It's not... but that's another topic. 那么谁能告诉我它有什么用? 最佳
我已经知道实现和接口(interface)的基础知识。我不明白什么时候使用接口(interface)。有接口(interface)的要求是什么? 例子: /// Interface demo Inte
在一些 R 函数的主体中,例如 lm,我看到对 match.call 函数的调用。正如其帮助页面所述,当在函数内部使用 match.call 时,会返回指定参数名称的调用;这对于将大量参数传递给另一个
在监督学习中,我有典型的训练/测试分割来学习算法,例如回归或分类。关于无监督学习,我的问题是:训练/测试分割是否必要且有用?如果是,为什么? 最佳答案 这取决于问题、数据集的形式以及用于解决特定问题的
我最近接触到 Javascript 模板并变得非常感兴趣。 我正在使用 MVC 模式构建一个大型 PHP 应用程序。模板由相当棒的 Twig 处理. 我最近遇到了一个 javascript imple
我最近在一个我要重构并拥有的项目中遇到了以下代码行: SomeClass someClass = new SomeClass(); 我这辈子都想不通为什么有人会以这种方式使用泛型。我想出的唯一原因是
亲爱的,我正在阅读这篇关于通过 asp.net 4 中的代码动态添加元标记的帖子 - 但我想问一下对 SEO 有什么好处,静态添加它或者在代码后面添加它没有问题 http://weblogs.asp.
我是一名优秀的程序员,十分优秀!