无序关联容器 无序关联容器(Unordered associative container)是C++11标准库中新增的类型,包括 unorder...
std::tuple tuple简史 C++ Reference对tuple的解释是“fixed-size collection of hete...
std::swap() std::swap()是一个很简单的函数:交换两个参数的值,仅此而已。但是这个看似平淡无奇的函数,背后的故事却不简单。不...
std::chrono 说起来有点令人难以置信,直到C++ 11之前,标准库中唯一可以处理时间的就是<ctime>提供的有限的几个函数,而即使这...
Smart Pointers Smart pointer,也就是所谓的“智能指针”,是指那些能够自我管理生命周期的指针对象。C++ 11之前,标...
std::array std::array是c-style数组的对象化包装。我们知道c-style数组在使用时很痛苦的一点是数组本身并不知道自己...
Type Traits Trait在英语中特指a particular quality of your personality,大致相当于汉语中...
C++模板元编程 元程序一词来源于英文单词metaprogram。在英语中,metaprogram的意思是a program about a p...
原文:Swift's mysterious Builtin module 当你在Playground中cmd+click某个量,比如Int的时候...