- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the help center为指导。
8年前关闭。
异常处理 (EH) 似乎是当前的标准,通过搜索网络,我找不到任何试图改进或替换它的新想法或方法(嗯,存在一些变化,但没有什么新奇)。
虽然大多数人似乎忽略它或只是接受它,EH 有 一些巨大的缺点:异常对代码是不可见的,它会创建很多很多可能的退出点。乔尔在软件上写了一篇 article about it .与 goto
的比较非常合身,这让我又想起了 EH。
我尽量避免 EH,只使用返回值、回调或任何适合目的的东西。但是当你不得不写出可靠的代码时,你现在不能忽视 EH :它以 new
开头,这可能会引发异常,而不是仅仅返回 0(就像过去一样)。这使得任何 C++ 代码行都容易出现异常。然后 C++ 基础代码中的更多地方抛出异常...... std lib 做到了,依此类推。
这感觉就像 在摇摇欲坠的地面上行走 .. 所以,现在我们不得不处理异常了!
但是很难,真的很难。您必须学习编写异常安全的代码,即使您有一定的经验,仍然需要仔细检查任何一行代码以确保安全!或者你开始在任何地方放置 try/catch 块,这会使代码变得困惑,直到它达到不可读的状态。
EH 取代了旧的干净的确定性方法(返回值..),该方法只有一些但可以理解且易于解决的缺点,这种方法会在您的代码中创建许多可能的退出点,并且如果您开始编写捕获异常的代码(在某些时候被迫这样做),然后它甚至会在您的代码中创建多个路径(catch 块中的代码,考虑一个服务器程序,其中您需要除 std::cerr 之外的日志记录工具......)。 EH 有优势,但这不是重点。
我的实际问题:
最佳答案
您的问题断言,“编写异常安全的代码非常困难”。我会先回答你的问题,然后再回答背后隐藏的问题。
回答问题
Do you really write exception safe code?
boost::thread
或
std::thread
)将抛出异常以正常退出。
Are you sure your last "production ready" code is exception safe?
Can you even be sure, that it is?
Do you know and/or actually use alternatives that work?
new
可以抛出异常,但分配内置(例如 int 或指针)不会失败。交换永远不会失败(永远不要写抛出交换),
std::list::push_back
可以扔...
void doSomething(T & t)
{
if(std::numeric_limits<int>::max() > t.integer) // 1. nothrow/nofail
t.integer += 1 ; // 1'. nothrow/nofail
X * x = new X() ; // 2. basic : can throw with new and X constructor
t.list.push_back(x) ; // 3. strong : can throw
x->doSomethingThatCanThrow() ; // 4. basic : can throw
}
我在编写所有代码时都考虑到了这种分析。
void doSomething(T & t)
{
if(std::numeric_limits<int>::max() > t.integer) // 1. nothrow/nofail
t.integer += 1 ; // 1'. nothrow/nofail
std::auto_ptr<X> x(new X()) ; // 2. basic : can throw with new and X constructor
X * px = x.get() ; // 2'. nothrow/nofail
t.list.push_back(px) ; // 3. strong : can throw
x.release() ; // 3'. nothrow/nofail
px->doSomethingThatCanThrow() ; // 4. basic : can throw
}
现在,我们的代码提供了“基本”保证。什么都不会泄漏,所有对象都将处于正确状态。但我们可以提供更多,也就是强有力的保证。这就是它可能变得昂贵的地方,这就是为什么
并非所有 C++ 代码很强大。让我们试试看:
void doSomething(T & t)
{
// we create "x"
std::auto_ptr<X> x(new X()) ; // 1. basic : can throw with new and X constructor
X * px = x.get() ; // 2. nothrow/nofail
px->doSomethingThatCanThrow() ; // 3. basic : can throw
// we copy the original container to avoid changing it
T t2(t) ; // 4. strong : can throw with T copy-constructor
// we put "x" in the copied container
t2.list.push_back(px) ; // 5. strong : can throw
x.release() ; // 6. nothrow/nofail
if(std::numeric_limits<int>::max() > t2.integer) // 7. nothrow/nofail
t2.integer += 1 ; // 7'. nothrow/nofail
// we swap both containers
t.swap(t2) ; // 8. nothrow/nofail
}
我们对操作重新排序,首先创建和设置
X
到其正确的值(value)。如果任何操作失败,则
t
没有被修改,所以,操作 1 到 3 可以被认为是“强”的:如果有东西抛出,
t
未修改,且
X
不会泄漏,因为它属于智能指针。
t2
的
t
,并从操作 4 到操作 7 处理此拷贝。如果出现异常,
t2
被修改,但是,
t
还是原来的。我们仍然提供强有力的保证。
t
和
t2
.交换操作不应该在 C++ 中抛出,所以让我们希望你为
T
编写的交换是 nothrow (如果不是,重写它,使其不被抛出)。
t
有它的异常(exception)值(value)。如果失败,则
t
仍然具有它的原始值(value)。
swap()
功能。然而,应该注意的是,std::swap()
可能会根据其内部使用的操作失败 std::swap
将进行复制和分配,对于某些对象,可能会抛出。因此,默认交换可能会抛出,用于您的类甚至 STL 类。就C++标准而言,
vector
的交换操作,
deque
, 和
list
不会抛出,而它可以用于
map
如果比较仿函数可以进行复制构造(请参阅 The C++ Programming Language, Special Edition, appendix E, E.4.3.Swap)。
t.integer += 1;
is without the guarantee that overflow will not happen NOT exception safe, and in fact may technically invoke UB! (Signed overflow is UB: C++11 5/4 "If during the evaluation of an expression, the result is not mathematically defined or not in the range of representable values for its type, the behavior is undefined.") Note that unsigned integer do not overflow, but do their computations in an equivalence class modulo 2^#bits.
t.integer += 1 ; // 1. nothrow/nofail
这里的解决方案是在进行加法运算之前验证整数是否已经达到最大值(使用
std::numeric_limits<T>::max()
)。
关于c++ - 你(真的)编写异常安全代码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1853243/
我尝试理解[c代码 -> 汇编]代码 void node::Check( data & _data1, vector& _data2) { -> push ebp -> mov ebp,esp ->
我需要在当前表单(代码)的上下文中运行文本文件中的代码。其中一项要求是让代码创建新控件并将其添加到当前窗体。 例如,在Form1.cs中: using System.Windows.Forms; ..
我有此 C++ 代码并将其转换为 C# (.net Framework 4) 代码。有没有人给我一些关于 malloc、free 和 sprintf 方法的提示? int monate = ee; d
我的网络服务器代码有问题 #include #include #include #include #include #include #include int
给定以下 html 代码,将列表中的第三个元素(即“美丽”一词)以斜体显示的 CSS 代码是什么?当然,我可以给这个元素一个 id 或一个 class,但 html 代码必须保持不变。谢谢
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我试图制作一个宏来避免重复代码和注释。 我试过这个: #define GrowOnPage(any Page, any Component) Component.Width := Page.Surfa
我正在尝试将我的旧 C++ 代码“翻译”成头条新闻所暗示的 C# 代码。问题是我是 C# 中的新手,并不是所有的东西都像 C++ 中那样。在 C++ 中这些解决方案运行良好,但在 C# 中只是不能。我
在 Windows 10 上工作,R 语言的格式化程序似乎没有在 Visual Studio Code 中完成它的工作。我试过R support for Visual Studio Code和 R-T
我正在处理一些报告(计数),我必须获取不同参数的计数。非常简单但乏味。 一个参数的示例查询: qCountsEmployee = ( "select count(*) from %s wher
最近几天我尝试从 d00m 调试网络错误。我开始用尽想法/线索,我希望其他 SO 用户拥有可能有用的宝贵经验。我希望能够提供所有相关信息,但我个人无法控制服务器环境。 整个事情始于用户注意到我们应用程
我有一个 app.js 文件,其中包含如下 dojo amd 模式代码: require(["dojo/dom", ..], function(dom){ dom.byId('someId').i
我对“-gencode”语句中的“code=sm_X”选项有点困惑。 一个例子:NVCC 编译器选项有什么作用 -gencode arch=compute_13,code=sm_13 嵌入库中? 只有
我为我的表格使用 X-editable 框架。 但是我有一些问题。 $(document).ready(function() { $('.access').editable({
我一直在通过本教程学习 flask/python http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-wo
我想将 Vim 和 EMACS 用于 CNC、G 代码和 M 代码。 Vim 或 EMACS 是否有任何语法或模式来处理这种类型的代码? 最佳答案 一些快速搜索使我找到了 this vim 和 thi
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve this
这个问题在这里已经有了答案: Enabling markdown highlighting in Vim (5 个回答) 6年前关闭。 当我在 Vim 中编辑包含 Markdown 代码的 READM
我正在 Swift3 iOS 中开发视频应用程序。基本上我必须将视频 Assets 和音频与淡入淡出效果合并为一个并将其保存到 iPhone 画廊。为此,我使用以下方法: private func d
pipeline { agent any stages { stage('Build') { steps { e
我是一名优秀的程序员,十分优秀!