C++核心准则C.122:需要完全隔离接口和实现时用抽象类作为接口
发布日期:2021-07-01 05:26:56 浏览次数:2 分类:技术文章

本文共 1287 字,大约阅读时间需要 4 分钟。

C.122: Use abstract classes as interfaces when complete separation of interface and implementation is needed

C.122:需要完全隔离接口和实现时用抽象类作为接口‍

 

 

Reason(原因)

 

Such as on an ABI (link) boundary.

类似ABI边界的做法。

 

ABI:https://baike.baidu.com/item/ABI/10912305

 

 

 

Example(示例)

 

struct Device {    virtual ~Device() = default;    virtual void write(span
 outbuf) = 0;    virtual void read(span
 inbuf) = 0;};class D1 : public Device {    // ... data ...    void write(span
 outbuf) override;    void read(span
 inbuf) override;};class D2 : public Device {    // ... different data ...    void write(span
 outbuf) override;    void read(span
 inbuf) override;};

A user can now use D1s and D2s interchangeably through the interface provided by Device. Furthermore, we can update D1 and D2 in ways that are not binary compatible with older versions as long as all access goes through Device.

用户可以通过Device提供的接口自由地使用D1或D2的对象。除此之外,只要是通过Device访问,我们甚至可以将D1和D2更新为与旧版本不兼容的二进制形式。

 

 

Enforcement(实施建议)

 

???

 

 

原文链接

 

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c122-use-abstract-classes-as-interfaces-when-complete-separation-of-interface-and-implementation-is-needed

 


 

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

阅读更多更新文章,请关注微信公众号【面向对象思考】

转载地址:https://oothinking.blog.csdn.net/article/details/105101818 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:C++核心准则C.126:抽象类通常不需要构造函数
下一篇:C++核心准则C.121:如果基类被用来定义接口,保证它是一个纯虚类

发表评论

最新留言

关注你微信了!
[***.104.42.241]2024年04月16日 17时31分11秒