C++核心准则A.1-A.4:架构理念
共 1759字,需浏览 4分钟
·
2020-10-30 21:59
A.1: Separate stable code from less stable code
A.1:将稳定代码与不稳定代码分开
Isolating less stable code facilitates its unit testing, interface improvement, refactoring, and eventual deprecation.
隔离不稳定的代码有助于其单元测试,接口改进,重构乃至最终弃用。
A.2: Express potentially reusable parts as a library
A.2:将潜在可重用的部件表示为库
Reason(原因)
Note(注意)
A library is a collection of declarations and definitions maintained, documented, and shipped together. A library could be a set of headers (a "header-only library") or a set of headers plus a set of object files. You can statically or dynamically link a library into a program, or you can #include a header-only library.
库是放在一起维护,记录和发布的声明和定义的集合。一个库可以是一组头文件(“仅头文件的库”)或一组头文件外加一组目标文件。您可以将库静态或动态链接到程序,也可以#include仅包含文件的库。
A.4: There should be no cycles among libraries
A.4:库之间不应存在引用循环
Reason(原因)
A cycle complicates the build process.
循环引用会使编译过程复杂化。
Cycles are hard to understand and might introduce indeterminism (unspecified behavior).
循环很难理解,并且可能引入不确定性(未指定的行为)。
Note(注意)
A library can contain cyclic references in the definition of its components. For example:
库在其组件的定义中可以包含循环引用。例如
???
However, a library should not depend on another that depends on it.
然而,一个库不应该依赖于另一个依赖它的库。
原文链接
https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#a-architectural-ideas
新书介绍
《实战Python设计模式》是作者最近出版的新书,拜托多多关注!
本书利用Python 的标准GUI 工具包tkinter,通过可执行的示例对23 个设计模式逐个进行说明。这样一方面可以使读者了解真实的软件开发工作中每个设计模式的运用场景和想要解决的问题;另一方面通过对这些问题的解决过程进行说明,让读者明白在编写代码时如何判断使用设计模式的利弊,并合理运用设计模式。
对设计模式感兴趣而且希望随学随用的读者通过本书可以快速跨越从理解到运用的门槛;希望学习Python GUI 编程的读者可以将本书中的示例作为设计和开发的参考;使用Python 语言进行图像分析、数据处理工作的读者可以直接以本书中的示例为基础,迅速构建自己的系统架构。
觉得本文有帮助?请分享给更多人。
关注微信公众号【面向对象思考】轻松学习每一天!
面向对象开发,面向对象思考!