摘要:目 录pair和tuple模板类智能指针类numeric limitstype traits, type utilities辅助函数(min, max, swap, etc.)ratio模板类时钟和定时器一些重要的C函数PART I : std::pair 和 std::tuple模板类一、pair...
阅读全文
摘要:( 原书第四章,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, ...
阅读全文
摘要:前言 这是我阅读《The C++ standard library, 2nd Edition》所做读书笔记的第一篇。这个系列基本上会以一章一篇的节奏来写,少数以C++03为主的章节会和其它章节合并,一些内容较多的章节也会抽出几个独立的章节。这些博文不分析具体的应用情景,仅仅用来记录C++11新增的知识点。关于C++11知识点的详细解析,请参考C++11 FAQ;关于C++03以及STL的较详尽解析,请参考相关著作或者网络资料;推荐《C++ Primer,4th edition》和《The C++ Standard Library》。(原书第三章:New Language Features)新.
阅读全文