C++核心准则T.3:使用模板表现容器和范围
蜀葵
T.3: Use templates to express containers and ranges
T.3:使用模板表现容器和范围
Reason(原因)
Containers need an element type, and expressing that as a template argument is general, reusable, and type safe. It also avoids brittle or inefficient workarounds. Convention: That's the way the STL does it.
容器需要知道元素类型,将元素类型表示为模板参数是通行,可重用和类型安全的方式。它可以避免脆弱性和低效的变通。做为惯例,STL就是这么做的。
Example(示例)
template
// requires Regular
class Vector {
// ...
T* elem; // points to sz Ts
int sz;
};
Vector v(10);
v[7] = 9.9;
Example, bad(反面示例)
class Container {
// ...
void* elem; // points to size elements of some type
int sz;
};
Container c(10, sizeof(double));
((double*) c.elem)[7] = 9.9;
This doesn't directly express the intent of the programmer and hides the structure of the program from the type system and optimizer.
Hiding the void* behind macros simply obscures the problems and introduces new opportunities for confusion.
这段代码没有直接表达程序员的意图并对类型系统和优化器隐藏程序结构。用宏定义掩盖void*只会模糊化问题并进一步增加混淆的机会。
Exceptions: If you need an ABI-stable interface, you might have to provide a base implementation and express the (type-safe) template in terms of that. See Stable base.
例外:如果你需要ABI稳定的接口,你可能必须提供一个基础实现并按照其概念表现模板。
Enforcement(实施建议)
Flag uses of void*s and casts outside low-level implementation code
标记使用void*并在外面的实现代码中使用低水平类型转换的情况。
原文链接
https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#t3-use-templates-to-express-containers-and-ranges
新书介绍
《实战Python设计模式》是作者最近出版的新书,拜托多多关注!
本书利用Python 的标准GUI 工具包tkinter,通过可执行的示例对23 个设计模式逐个进行说明。这样一方面可以使读者了解真实的软件开发工作中每个设计模式的运用场景和想要解决的问题;另一方面通过对这些问题的解决过程进行说明,让读者明白在编写代码时如何判断使用设计模式的利弊,并合理运用设计模式。
对设计模式感兴趣而且希望随学随用的读者通过本书可以快速跨越从理解到运用的门槛;希望学习Python GUI 编程的读者可以将本书中的示例作为设计和开发的参考;使用Python 语言进行图像分析、数据处理工作的读者可以直接以本书中的示例为基础,迅速构建自己的系统架构。
觉得本文有帮助?请分享给更多人。
关注微信公众号【面向对象思考】轻松学习每一天!
面向对象开发,面向对象思考!