C++核心准则ES.76:避免使用goto语句​

面向对象思考

共 1429字,需浏览 3分钟

 · 2020-06-03

6bef368599ff2f9adc652d3eeb54cf0c.webp

ES.76: Avoid goto

ES.76:避免使用goto语句


Reason(原因)

Readability, avoidance of errors. There are better control structures for humans; goto is for machine generated code.

可读性,避免错误。存在另外的更好的代码结构可用。


Exception(例外)

Breaking out of a nested loop. In that case, always jump forwards.

从嵌套循环中跳出。这种情况下,总是向前(代码执行角度的向前,译者注)跳。

for (int i = 0; i < imax; ++i)
for (int j = 0; j < jmax; ++j) {
if (a[i][j] > elem_max) goto finished;
// ...
}
finished:
// ...

Example, bad(反面示例)

There is a fair amount of use of the C goto-exit idiom:

存在相当数量的使用goto-exit惯用法的C代码。

void f()
{
// ...
goto exit;
// ...
goto exit;
// ...
exit:
// ... common cleanup code ...
}

This is an ad-hoc simulation of destructors. Declare your resources with handles with destructors that clean up. If for some reason you cannot handle all cleanup with destructors for the variables used, consider gsl::finally() as a cleaner and more reliable alternative to goto exit。

这是析构函数特别合适的使用场景。定义资源管理类,在它的析构函数中执行清除动作。如果由于某种原因,析构函数不能在所有情况下中实现完全地清除,考虑使用gsl::finally作为清除器和goto的更可靠代替手段。


Enforcement(实施建议)

  • Flag goto. Better still flag all gotos that do not jump from a nested loop to the statement immediately after a nest of loops.

  • 标记goto语句。最好标识所有的goto语句。只有一种例外情况:从嵌套循环内跳转到紧接在循环之后的代码。


原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es76-avoid-goto




觉得本文有帮助?请分享给更多人。

关注微信公众号【面向对象思考】轻松学习每一天!

面向对象开发,面向对象思考!


浏览 33
点赞
评论
收藏
分享

手机扫一扫分享

举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

举报