C++11的一般概念——The C++ standard library, 2nd Edition 笔记(二)
摘要:
( 原书第四章,General Concepts)只介绍新内容,关于头文件格式和后缀等C++03已经规范化的内容,不再赘述。namespace std:新的std子空间包括:std::tr1, tr1 = technical report 1;std::rel_ops, 用==和 sp(new C); std::bind(func, 3, 7)(); // 注意(); func(3, 7) std::bind(C(), 3, 7)(); // C()(3, 7); std::bind(l, 3, 7)(); //l(3, 7); std::bind(&C::memfunc, ... 阅读全文