C++核心准则ES.79:使用default处理一般case

网友投稿 634 2022-10-13

C++核心准则ES.79:使用default处理一般case

C++核心准则ES.79:使用default处理一般case

ES.79: Use default to handle common cases (only)

ES.79:使用default处理一般case

Reason(原因)

Code clarity. Improved opportunities for error detection.

代码清晰性。增加发现错误的机会。

Example(示例)

enum E { a, b, c , d };void f1(E x){ switch (x) { case a: do_something(); break; case b: do_something_else(); break; default: take_the_default_action(); break; }}

Here it is clear that there is a default action and that cases a and b are special.

可以清晰地看出存在一个默认case,而a和b是特殊case。

Example(示例)

But what if there is no default action and you mean to handle only specific cases? In that case, have an empty default or else it is impossible to know if you meant to handle all cases:

如果就是没有默认动作,你只想处理特殊case时应该怎么做呢?这种情况下,保留一个空的默认处理,否则不可能知道你是否意图处理所有case。

void f2(E x){ switch (x) { case a: do_something(); break; case b: do_something_else(); break; default: // do nothing for the rest of the cases break; }}

If you leave out the default, a maintainer and/or a compiler may reasonably assume that you intended to handle all cases:

如果漏掉了default,维护者或者编译器可能会合情合理的假设你意图处理所有case。

void f2(E x){ switch (x) { case a: do_something(); break; case b: case c: do_something_else(); break; }}

Did you forget case d or deliberately leave it out? Forgetting a case typically happens when a case is added to an enumeration and the person doing so fails to add it to every switch over the enumerators.

你是忘记了case d还是故意遗漏的?忘记一个case通常发生在增加枚举值之后却没有为所有switch语句增加针对该值的处理的时候。

Enforcement(实施建议)

Flag switch-statements over an enumeration that don't handle all enumerators and do not have a default. This may yield too many false positives in some code bases; if so, flag only switches that handle most but not all cases (that was the strategy of the very first C++ compiler).

标记针对枚举类型的、没有处理所有枚举值并且不包含default处理的switch语句。对于某些代码这种做法可能会产生太多的假阳性;如果发生这种情况,只标记处理了大部分case但不是全部case的情况(这正是很早期的C++编译器采用的策略)。

原文链接

​​的标准GUI 工具包tkinter,通过可执行的示例对23 个设计模式逐个进行说明。这样一方面可以使读者了解真实的软件开发工作中每个设计模式的运用场景和想要解决的问题;另一方面通过对这些问题的解决过程进行说明,让读者明白在编写代码时如何判断使用设计模式的利弊,并合理运用设计模式。

对设计模式感兴趣而且希望随学随用的读者通过本书可以快速跨越从理解到运用的门槛;希望学习Python GUI 编程的读者可以将本书中的示例作为设计和开发的参考;使用Python 语言进行图像分析、数据处理工作的读者可以直接以本书中的示例为基础,迅速构建自己的系统架构。

觉得本文有帮助?欢迎点赞并分享给更多的人。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Actix web是一个用于Rust的小巧,实用且极速的Web框架
下一篇:学习PHP框架时写的简单MVC框架
相关文章

 发表评论

暂时没有评论,来抢沙发吧~