Why are C++ STL iostreams not quot;exception friendlyquot;?(为什么 C++ STL iostreams 不是“异常友好的?)
问题描述
我习惯了 Delphi VCL 框架,其中 TStreams 会在错误时抛出异常(例如,找不到文件,磁盘已满).我正在移植一些代码以使用 C++ STL,并且已被 iostreams 捕获,默认情况下不会抛出异常,而是设置 badbit/failbit flags 代替.
I'm used to the Delphi VCL Framework, where TStreams throw exceptions on errors (e.g file not found, disk full). I'm porting some code to use C++ STL instead, and have been caught out by iostreams NOT throwing exceptions by default, but setting badbit/failbit flags instead.
两个问题...
a:为什么会这样 - 对于从一开始就包含异常的语言来说,这似乎是一个奇怪的设计决定?
a: Why is this - It seems an odd design decision for a language built with exceptions in it from day one?
b:如何最好地避免这种情况?我可以生成像我期望的那样抛出的 shim 类,但这感觉就像重新发明轮子.也许有一个 BOOST 库可以更明智地做到这一点?
b: How best to avoid this? I could produce shim classes that throw as I would expect, but this feels like reinventing the wheel. Maybe there's a BOOST library that does this in a saner fashion?
推荐答案
C++ 从一开始就没有例外.C 类"1979 年开始,1989 年添加了异常.同时,
streams 库早在 1984 年就编写好了(后来在 1989 年成为
iostreams
(后来在 1991 年被 GNU 重新实现)),它只是不能在一开始就使用异常处理.
C++ wasn't built with exceptions from day one. "C with classes" started in 1979, and exceptions were added in 1989. Meanwhile, the
streams
library was written as early as 1984 (later becomesiostreams
in 1989 (later reimplemented by GNU in 1991)), it just cannot use exception handling in the beginning.
参考:
- Bjarne Stroustrup,C++ 的历史:1979−1991 年
- C++ 库
您可以使用 <代码>.exceptions 方法.
You can enable exceptions with the .exceptions
method.
// ios::exceptions
#include <iostream>
#include <fstream>
#include <string>
int main () {
std::ifstream file;
file.exceptions(ifstream::failbit | ifstream::badbit);
try {
file.open ("test.txt");
std::string buf;
while (std::getline(file, buf))
std::cout << "Read> " << buf << "
";
}
catch (ifstream::failure& e) {
std::cout << "Exception opening/reading file
";
}
}
这篇关于为什么 C++ STL iostreams 不是“异常友好的"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 C++ STL iostreams 不是“异常友好的"?


基础教程推荐
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 我有静态或动态 boost 库吗? 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07