see #12: translate ch10

This commit is contained in:
Changkun Ou
2019-07-14 22:52:27 +02:00
parent c50f2654d8
commit 3fc59f9bea
2 changed files with 89 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ order: 10
[TOC]
C++20 如同 C++17 一样,似乎能够成为一个振奋人心的更新。例如,早在 C++11 时期就跃跃欲试呼声极高却最终落选的 `Concept`,如今已经箭在弦上。
C++20 如同 C++11 一样,似乎能够成为一个振奋人心的更新。例如,早在 C++11 时期就跃跃欲试呼声极高却最终落选的 `Concept`,如今已经箭在弦上。
C++ 组委会在讨论投票最终确定 C++20 有很多提案,诸如 **Concepts**/**Module**/**Coroutine**/**Ranges**/ 等等。
本章我们就来一览 C++20 即将引入的那些重要特性。
@@ -75,7 +75,7 @@ TODO
## 总结
总的来说,终于在 C++2a 中看到 Concepts/Ranges/Modules 这些令人兴奋的特性,
总的来说,终于在 C++20 中看到 Concepts/Ranges/Modules 这些令人兴奋的特性,
这对于一门已经三十多岁『高龄』的编程语言,依然是充满魅力的。
[返回目录](./toc.md) | [上一章](./09-others.md) | [下一章 进一步阅读的学习材料](./appendix1.md)
@@ -83,8 +83,6 @@ TODO
## 进一步阅读的参考资料
- [Final features of C++17](https://meetingcpp.com/index.php/br/items/final-features-of-c17.html)
- [C++17: will it be great or just ok?](https://codeplay.com/public/uploaded/filehost/0cbdaf_c++17post-oulu2016.pdf)
- [Why Concepts didn't make C++17](http://honermann.net/blog/2016/03/06/why-concepts-didnt-make-cxx17/)
- [C++11/14/17/20 编译器支持情况](http://en.cppreference.com/w/cpp/compiler_support)
- [C++ 历史](https://en.cppreference.com/w/cpp/language/history)