gpt4 book ai didi

c++ - 抛出异常时使用 cout 语句尝试阻止行为

转载 作者:行者123 更新时间:2023-11-30 04:19:25 24 4
gpt4 key购买 nike

如果一个 try block 在同一 block 中抛出异常之前包含 cout 语句,这些语句是否会打印到控制台,或者它会表现得好像 try block 从未执行过一样?例如:

void foo()
{
try
{
cout << "1" << endl;
cout << "2" << endl;
bar(); //exception thrown in this function, but caught below
}

catch (exception e)
{
cout << e.what(); //assume the message is "error"
}
}

这个函数的输出会是

1
2
error

error

最佳答案

输出为

1
2
error

异常不会“撤消”

的影响
cout << "1" << endl;
cout << "2" << endl;

关于c++ - 抛出异常时使用 cout 语句尝试阻止行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15841402/

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