为什么 C++ STL iostream 不是“异常友好的"?

Why are C++ STL iostreams not quot;exception friendlyquot;?(为什么 C++ STL iostream 不是“异常友好的?)
本文介绍了为什么 C++ STL iostream 不是“异常友好的"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我习惯了 Delphi VCL 框架,其中 TStreams 在错误时抛出异常(例如找不到文件、磁盘已满).我正在移植一些代码来使用 C++ STL,并且被 iostreams 发现,默认情况下不会抛出异常,而是设置 badbit/failbit 标志.

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?

推荐答案

  1. C++ 从一开始就没有例外.C 类"1979年开始,1989年加入异常. 同时,streams库早在1984年就写好了(后来在1989年变成了iostreams(后来在1991年被GNU重新实现)),只是一开始就不能使用异常处理.

  1. 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 becomes iostreams in 1989 (later reimplemented by GNU in 1991)), it just cannot use exception handling in the beginning.

参考:

  • Bjarne Stroustrup,C++ 的历史:19791991
  • 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 iostream 不是“异常友好的"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Prevent class inheritance in C++(防止 C++ 中的类继承)
Why should I declare a virtual destructor for an abstract class in C++?(为什么要在 C++ 中为抽象类声明虚拟析构函数?)
Why is Default constructor called in virtual inheritance?(为什么在虚拟继承中调用默认构造函数?)
C++ cast to derived class(C++ 转换为派生类)
C++ virtual function return type(C++虚函数返回类型)
Is there any real risk to deriving from the C++ STL containers?(从 C++ STL 容器派生是否有任何真正的风险?)