![240](https://cdn2.jianshu.io/assets/default_avatar/15-a7ac401939dd4df837e3bbf82abaa2a8.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
C++11之前使用的binder1st、binder2nd、bind1st、bind2nd,在C++11中将合并为bind(),使用时需要引用#...
A:Hava you ever been in a tropical rainforest? B:Yes! I visited The Amas...
之前在Effective C++看到有一个条款:决不要重新定义继承而来的非虚函数,今天在看公司的代码的时候,发现有人重新定义继承而来的非虚函数,...
常量表达式(const expression):是指值不会改变并且在编译过程中就得到计算结果的表达式。(运行中得到结果的不能成为常量表达式)。 ...
A:If you enjoy adventure,you probably want to experience a real jungle? ...
仿函数functor,就是使一个类的使用看上去象一个函数。其实现就是类中实现一个operator,这个类就有了类似函数的行为,就是一个仿函数类了...
array、vector、deque、 set/multiset、map/multimap、 unordered_set/unordered_m...
array、vector、deque、list、forward_list不带find()成员函数,如需使用,可使用全局的find()函数; se...
array、vector、deque、list、forward_list不带count成员函数,如需使用,可使用全局的count函数; set/...