|
| 1 | +# C++ 11/14/17 On The Fly |
| 2 | + |
| 3 | +> This book adapting to C++17 and translating to English |
| 4 | +
|
| 5 | +## Table of Contents |
| 6 | + |
| 7 | +- [**Preface**](./00-preface.md) |
| 8 | +- [**Chapter 01 Towards C++11/14/17**](./01-intro.md) |
| 9 | + + 1.1 Deprecated Features |
| 10 | + + 1.2 Compatibility with C |
| 11 | + + Further Readings |
| 12 | +- [**Chapter 02 Language Usability Enhancements**](./02-usability.md) |
| 13 | + + 2.1 Constants |
| 14 | + - nullptr |
| 15 | + - constexpr |
| 16 | + + 2.2 Variables & Initialization |
| 17 | + - Conditional Statement |
| 18 | + - Initializer List |
| 19 | + - Structured binding |
| 20 | + + 2.3 Type Deduction |
| 21 | + - auto |
| 22 | + - decltype |
| 23 | + - Tail return type |
| 24 | + - decltype(auto) |
| 25 | + + 2.4 Control Flow |
| 26 | + - if constexpr |
| 27 | + - Range-based for loop |
| 28 | + + 2.5 Templates |
| 29 | + - External templates |
| 30 | + - The ">" |
| 31 | + - Type alias templates |
| 32 | + - Default template parameters |
| 33 | + - Variadic templates |
| 34 | + - Fold expression |
| 35 | + + 2.6 Object-oriented |
| 36 | + - Delegate constructor |
| 37 | + - Inheritance constructor |
| 38 | + - Explicit virtual function overwrite |
| 39 | + - override |
| 40 | + - final |
| 41 | + - Explicit delete default function |
| 42 | + - Strongly typed enumerations |
| 43 | +- [**Chapter 03 Language Runtime Enhancements**](./03-runtime.md) |
| 44 | + + Lambda expression |
| 45 | + + Basics |
| 46 | + + Value capture |
| 47 | + + Reference capture |
| 48 | + + Implicit capture |
| 49 | + + Expression capture |
| 50 | + + Generic lambda |
| 51 | + + Function object wrapper |
| 52 | + + std::function |
| 53 | + + std::bind/std::placeholder |
| 54 | + + rvalue reference |
| 55 | + + lvalue, rvalue, prvalue, xvalue |
| 56 | + + rvalue reference & lvalue reference |
| 57 | + + Move semantics |
| 58 | + + Perfect forwarding |
| 59 | +- [**Chapter 04 Sandard Library: Containers**](./04-containers.md) |
| 60 | + + `std::array` |
| 61 | + + `std::forward_list` |
| 62 | + + `std::unordered_set` |
| 63 | + + `std::unordered_map` |
| 64 | + + `std::tuple` |
| 65 | + + basic operation |
| 66 | + + runtime indexing |
| 67 | + + merge and iteration |
| 68 | +- [**Chapter 05 Sandard Library: Pointers**](./05-pointers.md) |
| 69 | + + RAII and reference counting |
| 70 | + + `std::shared_ptr` |
| 71 | + + `std::unique_ptr` |
| 72 | + + `std::weak_ptr` |
| 73 | +- [**Chapter 06 Sandard Library: Regular Expression**](./06-regex.md) |
| 74 | + + Regular Expression Introduction |
| 75 | + + Normal characters |
| 76 | + + Special characters |
| 77 | + + Determinative |
| 78 | + + `std::regex` |
| 79 | + + `std::regex` |
| 80 | + + `std::regex_match` |
| 81 | + + `std::match_results` |
| 82 | +- [**Chapter 07 Sandard Library: Threads and Concurrency**](./07-thread.md) |
| 83 | + + `std::thread` |
| 84 | + + `std::mutex` |
| 85 | + + `std::unique_lock` |
| 86 | + + `std::future` |
| 87 | + + `std::packaged_task` |
| 88 | + + `std::condition_variable` |
| 89 | +- [**Chapter 08 Sandard Library: File System**](./08-filesystem.md) |
| 90 | +- [**Chapter 09 Minor Features**](./09-others.md) |
| 91 | + + New Types |
| 92 | + + `long long int` |
| 93 | + + `noexcept` |
| 94 | + + Literal |
| 95 | + + Raw string literal |
| 96 | + + Custom string literal |
| 97 | + + Math Library |
| 98 | +- [**Chapter 10 Outlook: Introduction of C++20**](./10-cpp20.md) |
| 99 | + + Concept |
| 100 | + + Range |
| 101 | + + Module |
| 102 | + + Coroutine |
| 103 | +- [**Appendix: Further Study Materials**](./appendix.md) |
| 104 | + |
| 105 | +Table of Content | Last Chapter | [Next Chapter: Preface](./00-preface.md) |
| 106 | + |
| 107 | +## Licenses |
| 108 | + |
| 109 | +<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png" /></a><br />This work is written by [Ou Changkun](https://changkun.de) and licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License</a>. The code of this repository is open sourced under the [MIT license](./LICENSE). |
0 commit comments