C++中避免使用goto语句​的原因是什么

这期内容当中小编将会给大家带来有关C++中避免使用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语句。只有一种例外情况:从嵌套循环内跳转到紧接在循环之后的代码。


上述就是小编为大家分享的C++中避免使用goto语句的原因是什么了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注行业资讯频道。