C++17 is the next evolution in modern C++ programming, which is already at least partially supported by the latest version of gcc, clang, and Visual C++. Although it is not as big a step as C++11, it contains a large number of small and valuable language and library features, which again will change the way we program in C++. This applies to both application programers and programmers providing foundation libraries. This book will present all the new language and library features in C++17. It will cover the motivation and context of each new feature with examples and background information. As usual for books by Nicolai Josuttis, the focus lies on the application of the new features in practice and will demonstrate how features impact day-to-day programming and how to benefit from them in projects.
2024-03-22 09:59:35 1.02MB C++17 Nicolai
1
太大,没办法,压缩分成了两卷,需要两卷都下载一起解压才行哦,看大小就知道是高清的啦,有需要的可以下载看看,书还是可以买来手边翻翻看看,但如果要出去做项目,还是有个电子版的方便些啦!
2021-09-07 10:56:50 132.39MB C++标准库 第2版
1
太大,没办法,压缩分成了两卷,需要两卷都下载一起解压才行哦,看大小就知道是高清的啦,有需要的可以下载看看,书还是可以买来手边翻翻看看,但如果要出去做项目,还是有个电子版的方便些啦!
2021-09-07 10:55:43 150MB C++标准库 第2版
1
《C++ Templates中文版》是C++模板编程的完全指南,旨在通过基本概念、常用技巧和应用实例三方面的有用资料,为读者打下C++模板知识的坚实基础。书中详细讲解C++模板语言的概念,使用C++模板的常用设计技巧,还运用了应用例证(其中一些是“高级”应用)。《C++ Templates中文版》适合C++模板技术的初学者阅读,也可供有一定编程经验的C++程序员参考。 名人推荐 如果今年你只打算买一本C++的书,那就选《C++ Templates中文版》吧! ——Josh Walker,ACCU成员 《C++ Templates中文版》是C++世界期待已久的重量级著作。 ——Marc Briand, C/C++ Users Journal前任总编 一句话,模板圣经已经写就,请研习。 ——Maxim Khesin, CVISION Technologies, LLC
2021-06-10 21:39:38 91.23MB C++ Templates
1
http://www.cppstd17.com/ C++17 is the next evolution in modern C++ programming, which is already at least partially supported by the latest version of gcc, clang, and Visual C++. Although it is not as big a step as C++11, it contains a large number of small and valuable language and library featur
2021-05-30 22:09:44 1.12MB C++17
1
本资源是以压缩包的形式的, 里面是一个 “TXT”的文档, 文档中 有“百度云” 分享的链接, 这本书太大,上传不上来,所以以这样的方式上传。永久有效,欢迎下载。 本书作者是:Nicolai M. Josuttis, 侯捷(译) 内容简介: 《C++标准库(第2版)》是全球C++经典权威参考书籍时隔12年,基于C++11标准的全新重大升级。标准库提供了一组公共类和接口,极大地拓展了C++语言核心功能。《C++标准库(第2版)》详细讲解了每一标准库组件,包括其设计目的和方法、复杂概念的剖析、实用而高效的编程细节、存在的陷阱、重要的类和函数,又辅以大量用C++11标准实现的实用代码范例。除覆盖全新组件、特性外,《C++标准库(第2版)》一如前版,重点着眼于标准模板库(STL),涉及容器、迭代器、函数对象以及STL算法。此外,《C++标准库(第2版)》同样关注lambda表达式、基于区间的for循环、move语义及可变参数模板等标准库中的新式C++编程风格及其影响。 部分目录: 第 2 版译序 xxi 第 2 版序言 xxiii 第 2 版致谢 xxiv 第 1 版序言 xxv 第 1 版致谢 xxvi 1 关于本书 1 1.1 缘起 1 1.2 阅读前的必要基础 2 1.3 本书风格与结构 2 1.4 如何阅读本书 4 1.5 目前发展情势 5 1.6 范例代码及额外信息 5 1.7 反馈 5 2 C++ 及标准库简介 7 2.1 C++ Standard 的历史 7 2.1.1 C++11 Standard 常见疑问 8 2.1.2 C++98 和 C++11 的兼容性 9 2.2 复杂度与 Big-O 标记 10 3 语言新特性 13 3.1 C++11 语言新特性 13 3.1.1 微小但重要的语法提升 13 3.1.2 以auto完成类型自动推导 14 3.1.3 一致性初始化(Uniform Initialization)与初值列(Initializer List) 15 3.1.4 Range-Based for循环 17 3.1.5 Move 语义和 Rvalue Reference 19 3.1.6 新式的字符串字面常量(String Literal) 23 3.1.7 关键字noexcept 24 3.1.8 关键字constexpr 26 3.1.9 崭新的 Template 特性 26 3.1.10 Lambda 28 3.1.11 关键字decltype 32 3.1.12 新的函数声明语法(New Function Declaration Syntax) 32 3.1.13 带领域的(Scoped) Enumeration 32 3.1.14 新的基础类型(New Fundamental Data Type) 33 3.2 虽旧犹新的语言特性 33 3.2.1 基础类型的明确初始化(Explicit Initialization for Fundamental Type) 37 3.2.2 main()定义式 37 4 一般概念 39 4.1 命名空间(Namespace)std 39 4.2 头文件(Header File) 40 4.3 差错和异常(Error and Exception)的处理 41 4.3.1 标准的 Exception Class(异常类) 41 4.3.2 异常类(Exception Class)的成员 44 4.3.3 以 Class exception_ptr传递异常 52 4.3.4 抛出标准异常 53 4.3.5 自标准异常类派生 54 4.4 Callable Object(可被调用的对象) 54 4.5 并发与多线程 55 4.6 分配器(Allocator) 57 5 通用工具 59 5.1 Pair 和 Tuple 60 5.1.1 Pair 60 5.1.2 Tuple(不定数的值组) 68 5.1.3 Tuple 的输入/输出 74 5.1.4 tuple和pair转换 75 5.2 Smart Pointer(智能指针) 76 5.2.1 Class shared_ptr 76 5.2.2 Class weak_ptr 84 5.2.3 误用 Shared Pointer 89 5.2.4 细究 Shared Pointer 和 Weak Pointer 92 5.2.5 Class unique_ptr 98 5.2.6 细究 Class unique_ptr 110 5.2.7 Class auto_ptr 113 5.2.8 Smart Pointer 结语 114 5.3 数值的极值(Numeric Limit) 115 5.4 Type
2020-01-08 03:08:05 482B c++ 标准库 第2版
1