STL基础_Traits

模板编程

https://github.com/wuye9036/CppTemplateTutorial#c-template-%e8%bf%9b%e9%98%b6%e6%8c%87%e5%8d%97

模版元程序由元数据和元函数组成,元数据就是元编程可以操作的数据,即C++编译器在编译期可以操作的数据。元数据不是运行期变量,只能是编译期常量,不能修改,常见的元数据有enum枚举常量、静态常量、基本类型和自定义类型等。

https://www.cnblogs.com/qicosmos/p/4480460.html

可变参数

https://blog.csdn.net/Logan155/article/details/81662446?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control

模板函数

https://www.cnblogs.com/yingyulou/p/14410585.html

STL之traits:

https://blog.csdn.net/u012138730/article/details/89677827?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-2.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-2.control

https://blog.csdn.net/iteye_4185/article/details/82574695?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control

https://www.cnblogs.com/mangoyuan/p/6446046.html

模板特化偏特化:

https://www.cnblogs.com/invisible2/p/8001192.html

函数模板为什么没有偏特化

https://blog.csdn.net/xuminggang/article/details/4333214

https://www.cnblogs.com/slime/archive/2009/11/09/1598748.html

https://www.cnblogs.com/sxhlinux/p/7405781.html

SFINAE

https://blog.csdn.net/guangcheng0312q/article/details/103884392

https://www.cnblogs.com/mightofcode/archive/2013/04/07/3005849.html

引用和指针的区别

https://blog.csdn.net/listening_music/article/details/6921608

iterator_category

https://blog.csdn.net/weixin_42979679/article/details/90344445

原文地址:https://www.cnblogs.com/Babylon/p/14386536.html