240 发简信
IP属地:广东
  • bind()函数理解(C++11)

    C++11之前使用的binder1st、binder2nd、bind1st、bind2nd,在C++11中将合并为bind(),使用时需要引用#...

  • Rainforest

    A:Hava you ever been in a tropical rainforest? B:Yes! I visited The Amas...

  • 决不要重新定义继承而来的非虚函数(C++)

    之前在Effective C++看到有一个条款:决不要重新定义继承而来的非虚函数,今天在看公司的代码的时候,发现有人重新定义继承而来的非虚函数,...

  • constexpr理解(C++11)

    常量表达式(const expression):是指值不会改变并且在编译过程中就得到计算结果的表达式。(运行中得到结果的不能成为常量表达式)。 ...

  • Rainforest

    A:If you enjoy adventure,you probably want to experience a real jungle? ...

  • C++仿函数(functor)

    仿函数functor,就是使一个类的使用看上去象一个函数。其实现就是类中实现一个operator,这个类就有了类似函数的行为,就是一个仿函数类了...

  • 容器是否带sort()函数

    array、vector、deque、 set/multiset、map/multimap、 unordered_set/unordered_m...

  • 容器是否带find()函数

    array、vector、deque、list、forward_list不带find()成员函数,如需使用,可使用全局的find()函数; se...

  • 容器是否带count函数

    array、vector、deque、list、forward_list不带count成员函数,如需使用,可使用全局的count函数; set/...