gpt4 book ai didi

c++ - cout 能抛出异常吗?

转载 作者:太空狗 更新时间:2023-10-29 20:51:16 24 4
gpt4 key购买 nike

  • cout 是“ost​​ream”类型的一个实例
  • ostream::operator<<

    If the operation sets an internal state flag that was registered with
    member exceptions, the function throws an exception of member type failure.

这向我表明 cout 可以抛出异常。这是真的?什么样的情况会导致这种情况?

最佳答案

是的,但几乎没有人调用 cout.exceptions(iostate)启用它。

编辑阐述:

std::ios_base是为所有流提供基本实用函数的抽象类。 std::basic_ios<CharT, Traits>是它的一个抽象子类,添加了更多的实用函数(它又有更多的子类,导致人们实际实例化的类)。

std::ios_base::iostate是位掩码类型,由以下位组成,可能是or编辑:

badbit (used for weird underlying errors)
eofbit (used after you hit EOF)
failbit (the normal error for badly-formatted input)

此外,iostate::goodbit相当于iostate() (基本上是 0)。

通常,当您执行 I/O 时,您会在每次输入操作之后检查流的 bool 值以查看是否发生错误,例如if (cin >> val) { cout << val; } ...对于输出,可以简单地发出一堆并只在最后检查是否成功(或者对于 cout,根本不检查)。

但是,有些人更喜欢异常,因此每个单独的流都可以配置为将其中一些返回值转换为异常:

std::ios_base::iostate exceptions() const;
void exceptions(std::ios_base::iostate except);

在 C++ 中很少这样做,因为我们不会像其他一些语言的拥护者那样盲目地崇拜异常。特别是,“I/O 出现问题”是常见情况,因此扭曲控制流没有意义。

一个例子:

$ cat cout.cpp
#include <iostream>

int main()
{
std::cout.exceptions(std::cout.badbit);

std::cout << "error if written to a pipe" << std::endl;
}
$ sh -c 'trap "" PIPE; ./cout | true'
vvv 2018-06-21 23:33:13-0700
terminate called after throwing an instance of 'std::ios_base::failure[abi:cxx11]'
what(): basic_ios::clear: iostream error
Aborted

(请注意,在 Unix 系统上,您必须忽略 SIGPIPE 以便程序甚至有机会处理此类错误,因为对于许多程序来说,简单地退出是正确的做法做 - 这通常是允许 head 工作的原因)

关于c++ - cout 能抛出异常吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50979396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com