C++核心准则C.51:使用委托构造函数实现所有构造函数的共通动作

面向对象思考

共 1427字,需浏览 3分钟

 ·

2020-01-06 23:22

b76d4efb4c69bc0d382ece0370355a4c.webp

C.51: Use delegating constructors to represent common actions for all constructors of a class
C.51:使用委托构造函数实现所有构造函数的共通动作50543aec8cce6b7a3662f5a9c7afc521.webp

委托构造函数是C++11引入的新特性,具体请参照作者的以下文章:

https://mp.weixin.qq.com/s/sHyLCI1tkLWvxfBKUiKwMg

1ad089834001d4329ec15fc6a896a8e5.webpReason(原因)

To avoid repetition and accidental differences.

避免重复和意外的差异。


Example, bad(反面示例)
class Date {   // BAD: repetitive
   int d;
   Month m;
   int y;
public:
   Date(int dd, Month mm, year yy)
       :d{dd}, m{mm}, y{yy}
       { if (!valid(d, m, y)) throw Bad_date{}; }

   Date(int dd, Month mm)
       :d{dd}, m{mm} y{current_year()}
       { if (!valid(d, m, y)) throw Bad_date{}; }
   // ...
};

The common action gets tedious to write and may accidentally not be common.

共通的动作写起来很乏味,偶尔也会变得不普通。


Example(示例)
class Date2 {
   int d;
   Month m;
   int y;
public:
   Date2(int dd, Month mm, year yy)
       :d{dd}, m{mm}, y{yy}
       { if (!valid(d, m, y)) throw Bad_date{}; }

   Date2(int dd, Month mm)
       :Date2{dd, mm, current_year()} {}
   // ...
};

See also: If the "repeated action" is a simple initialization, consider an in-class member initializer.

参考:如果“重复的动作”只是简单的初始化,考虑类内成员初始化器。


Enforcement(实施建议)

(Moderate) Look for similar constructor bodies.

(中等)寻找函数体相似的构造函数。


原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c51-use-delegating-constructors-to-represent-common-actions-for-all-constructors-of-a-class




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

关注【面向对象思考】轻松学习每一天!

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


浏览 53
点赞
评论
收藏
分享

手机扫一扫分享

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

手机扫一扫分享

分享
举报