René's URL Explorer Experiment


Title: C++11 新特性及其学习方法(草稿) — Sphinx xyzstyle Theme

Open Graph Title: C++11 新特性及其学习方法(草稿)

Description: 无序容器,弥补了 hash 容器的缺漏, 支持移动函数、移动赋值运算符,以减少特定场景下对象拷贝的性能开销, 标准库:右值引用(&&饰词)、默认和禁用构造函数, 引入 move 算法(对于数学上的代数的完备性提供补充),带来了存储效率的提升, 智能指针, 高效学习方法:带着 “编译器会如何做?” 的问题学习 C++, C++ 编程范式:面向过程、基于对象、面向对象、泛型和函数式. auto ...

Open Graph Description: 无序容器,弥补了 hash 容器的缺漏, 支持移动函数、移动赋值运算符,以减少特定场景下对象拷贝的性能开销, 标准库:右值引用(&&饰词)、默认和禁用构造函数, 引入 move 算法(对于数学上的代数的完备性提供补充),带来了存储效率的提升, 智能指针, 高效学习方法:带着 “编译器会如何做?” 的问题学习 C++, C++ 编程范式:面向过程、基于对象、面向对象、泛型和函数式. auto ...

Opengraph URL: https://cpp-booklib.readthedocs.io/zh-cn/latest/draft/draft.html

direct link

Domain: xinetzone.github.io

og:typewebsite
og:site_namecpp-book
og:image:width1146
og:image:height600
og:imagehttps://cpp-booklib.readthedocs.io/zh-cn/latest/_images/social_previews/summary_draft_draft_00a98b8a.png
og:image:alt无序容器,弥补了 hash 容器的缺漏, 支持移动函数、移动赋值运算符,以减少特定场景下对象拷贝的性能开销, 标准库:右值引用(&&饰词)、默认和禁用构造函数, 引入 move 算法(对于数学上的代数的完备性提供补充),带来了存储效率的提升, 智能指针, 高效学习方法:带着 “编译器会如何做?” 的问题学习 C++, C++ 编程范式:面向过程、基于对象、面向对象、泛型和函数式. auto ...
twitter:cardsummary_large_image

Links:

Skip to main contenthttps://xinetzone.github.io/cpp-book/draft/draft.html#main-content
https://xinetzone.github.io/cpp-book/index.html
知乎https://www.zhihu.com/people/xinetzone
简书https://www.jianshu.com/u/4302480a3e8e
B站https://space.bilibili.com/252192181
https://www.cnblogs.com/q735613050/
领英https://www.linkedin.com/in/xinet
预备知识https://xinetzone.github.io/cpp-book/prepare/index.html
数字系统与信息表示https://xinetzone.github.io/cpp-book/prepare/00_digital.html
用电表示计算(raw)https://xinetzone.github.io/cpp-book/prepare/01_electricity.html
什么是编程https://xinetzone.github.io/cpp-book/prepare/02_programming.html
快速上手 C++https://xinetzone.github.io/cpp-book/start/index.html
使用代码https://xinetzone.github.io/cpp-book/start/use.html
初步认知https://xinetzone.github.io/cpp-book/start/initial-awareness.html
流程控制https://xinetzone.github.io/cpp-book/start/controlflow.html
语句误用https://xinetzone.github.io/cpp-book/start/statement-errors.html
函数初尝试https://xinetzone.github.io/cpp-book/start/simple-function.html
类型https://xinetzone.github.io/cpp-book/start/type.html
常量表达式https://xinetzone.github.io/cpp-book/start/constexpr.html
声明与定义https://xinetzone.github.io/cpp-book/start/statement.html
变量https://xinetzone.github.io/cpp-book/start/variable.html
https://xinetzone.github.io/cpp-book/start/class/index.html
用户自定义类型https://xinetzone.github.io/cpp-book/start/class/intro.html
演化一个类https://xinetzone.github.io/cpp-book/start/class/start.html
映射到硬件https://xinetzone.github.io/cpp-book/start/memory/index.html
数组https://xinetzone.github.io/cpp-book/start/memory/array.html
地址与指针https://xinetzone.github.io/cpp-book/start/memory/pointer.html
自由空间和引用https://xinetzone.github.io/cpp-book/start/memory/free-store.html
字面值常量https://xinetzone.github.io/cpp-book/start/literals.html
作用域https://xinetzone.github.io/cpp-book/start/scope.html
输入输出流https://xinetzone.github.io/cpp-book/start/iostream.html
基础概念https://xinetzone.github.io/cpp-book/start/concepts/index.html
布尔值https://xinetzone.github.io/cpp-book/start/concepts/01_bool.html
表达式https://xinetzone.github.io/cpp-book/start/concepts/expression.html
临时https://xinetzone.github.io/cpp-book/start/concepts/raw.html
成员访问https://xinetzone.github.io/cpp-book/start/member.html
学习手册https://xinetzone.github.io/cpp-book/books/index.html
C++ 语言导学https://xinetzone.github.io/cpp-book/tour/index.html
C++ 程序设计:原理与实践https://xinetzone.github.io/cpp-book/programming/index.html
C++ 程序设计语言https://xinetzone.github.io/cpp-book/guide/index.html
练习簿https://xinetzone.github.io/cpp-book/exercises/index.html
std::accumulatehttps://xinetzone.github.io/cpp-book/exercises/accumulate.html
C++ 调用 C 程序https://xinetzone.github.io/cpp-book/exercises/c2cpp.html
C 调用 C++https://xinetzone.github.io/cpp-book/exercises/cpp2c.html
fopenhttps://xinetzone.github.io/cpp-book/exercises/fopen.html
获取浮点数的尾数和指数https://xinetzone.github.io/cpp-book/exercises/frexp.html
std::generatehttps://xinetzone.github.io/cpp-book/exercises/generate.html
反射https://xinetzone.github.io/cpp-book/exercises/reflection.html
size_thttps://xinetzone.github.io/cpp-book/exercises/size_t.html
struct+enumhttps://xinetzone.github.io/cpp-book/exercises/struct-enum.html
时间模块 chronohttps://xinetzone.github.io/cpp-book/exercises/timer.html
vector 的切片或子向量https://xinetzone.github.io/cpp-book/exercises/vector-slice.html
xeus-cling 调用 C 代码https://xinetzone.github.io/cpp-book/exercises/xeus-cling-c.html
自制编译器https://xinetzone.github.io/cpp-book/compiler/index.html
测试https://xinetzone.github.io/cpp-book/compiler/intro.html
参考https://xinetzone.github.io/cpp-book/refs/index.html
术语表https://xinetzone.github.io/cpp-book/refs/glossary/index.html
常用术语https://xinetzone.github.io/cpp-book/refs/glossary/simple.html
Bjarne Stroustrup's C++ Glossaryhttps://xinetzone.github.io/cpp-book/refs/glossary/Stroustrup-Glossary.en.html
书籍与标准https://xinetzone.github.io/cpp-book/refs/glossary/book.html
其他术语https://xinetzone.github.io/cpp-book/refs/glossary/other.html
百科https://xinetzone.github.io/cpp-book/wiki/index.html
计算之比特位宽https://xinetzone.github.io/cpp-book/wiki/BitWidth.html
二进制码https://xinetzone.github.io/cpp-book/wiki/binary-code.html
浮点数https://xinetzone.github.io/cpp-book/wiki/float.html
#ifndefhttps://xinetzone.github.io/cpp-book/wiki/ifndef.html
其他https://xinetzone.github.io/cpp-book/other/index.html
CRTPhttps://xinetzone.github.io/cpp-book/other/crtp.html
暂存区https://xinetzone.github.io/cpp-book/refs/note.html
关于https://xinetzone.github.io/cpp-book/about/index.html
Covenant Code of Conducthttps://xinetzone.github.io/cpp-book/CODE_OF_CONDUCT.html
Contributinghttps://xinetzone.github.io/cpp-book/CONTRIBUTING.html
Security Policyhttps://xinetzone.github.io/cpp-book/SECURITY.html
变更日志https://xinetzone.github.io/cpp-book/CHANGELOG.html
回收站https://xinetzone.github.io/cpp-book/draft/index.html
C++11 新特性及其学习方法(草稿)https://xinetzone.github.io/cpp-book/draft/draft.html
C++ 初识(raw)https://xinetzone.github.io/cpp-book/draft/draft2.html
Repository https://github.com/xinetzone/cpp-book
Show source https://github.com/xinetzone/cpp-book/blob/main/doc/draft/draft.md?plain=1
Suggest edit https://github.com/xinetzone/cpp-book/edit/main/doc/draft/draft.md
Open issue https://github.com/xinetzone/cpp-book/issues/new?title=Issue%20on%20page%20%2Fdraft/draft.html&body=Your%20issue%20content%20here.
.md https://xinetzone.github.io/cpp-book/_sources/draft/draft.md
#https://xinetzone.github.io/cpp-book/draft/draft.html#c-11
上一页 回收站 https://xinetzone.github.io/cpp-book/draft/index.html
下一页 C++ 初识(raw) https://xinetzone.github.io/cpp-book/draft/draft2.html

Viewport: width=device-width, initial-scale=1


URLs of crawlers that visited me.