# 从哪里可以获得有关C++11的学术性和技术性的参考资料?
你可以从以下这些地方获得你想要的资料:
* Bjarne Stroustrup: [Software Development for Infrastructure.](http://www.computer.org/portal/web/computingnow/0212/whatsnew/computer-r?src=cnhome-v1) Computer, vol. 45, no. 1, pp. 47-58, Jan. 2012, doi:10.1109/MC.2011.353\. [A video interview](http://vimeo.com/35326736) about that paper and [video of a talk on a very similar topic](http://channel9.msdn.com/Events/GoingNative/GoingNative-2012/Keynote-Bjarne-Stroustrup-Cpp11-Style) (That’s a 90 minute talk incl. Q&A).
* Saeed Amrollahi:
[Modern Programming in New Millenium: A Technical Survey on Outstanding features of C++0x](http://www.saeedamrollahi.com/pub/C++0x.pdf).
Computer Report (Gozaresh-e Computer), No.199, November 2011 (Mehr and Aban 1390), pages 60-82\. (in Persian)
* Hans-J. Boehm and Sarita V. Adve: [Foundations of the C++ concurrency memory model](http://portal.acm.org/citation.cfm?id=1375581.1375591) . ACM PLDI’08\.
* Hans-J. Boehm: [Threads Basic](http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/threadsintro.html) . Yet unpublished technical report. // Introductory.
* Douglas Gregor, Jaakko Jarvi, Jeremy Siek, Bjarne Stroustrup, Gabriel Dos Reis, and Andrew Lumsdaine: [Concepts: Linguistic Support for Generic Programming in C++](http://www.research.att.com/%7Ebs/oopsla06.pdf) . OOPSLA’06, October 2006\. // The concept design and implementation as it stood in 2006; it has improved since, [though not sufficiently to save it](http://www2.research.att.com/%7Ebs/C++0xFAQ.html#what-concepts) .
* Douglas Gregor and Jaakko Jarvi: [Variadic templates for C++0x](http://www.jot.fm/issues/issue_2008_02/article2/) . Journal of Object Technology, 7(2):31-51, February 2008\.
* Jaakko Jarvi and John Freeman: [Lambda functions for C++0x](http://dx.doi.org/http://doi.acm.org/10.1145/1363686.1363735) . ACM SAC ’08\.
* Jaakko Jarvi, Mat Marcus, and Jacob N. Smith: [Programming with C++ Concepts](http://www2.research.att.com/%7Ebs/C++0xFAQ.html) . Science of Computer Programming, 2008\. To appear.
* M. Paterno and W. E. Brown : [Improving Standard C++ for the Physics Community](http://www2.research.att.com/%7Ebs/C++0xFAQ.html) . CHEP’04\. // Much have been improved since then!
* Michael Spertus and Hans J. Boehm: [The Status of Garbage Collection in C++0X](http://portal.acm.org/citation.cfm?doid=1542431.1542437) . ACM ISMM’09\.
* Verity Stob: [An unthinking programmer’s guide to the new C++ — Raising the standard](http://www.theregister.co.uk/2009/05/07/verity_stob_cplusplus/) . The Register. May 2009\. (Humor (I hope)).
* [N1781=05-0041] Bjarne Stroustrup: [Rules of thumb for the design of C++0x.](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1781.pdf)
* [Bjarne Stroustrup:](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1781.pdf) [Evolving a language in and for the real world: C++ 1991-2006](http://www.research.att.com/%7Ebs/hopl-almost-final.pdf) . ACM HOPL-III. June 2007\. (incl. slides and videos). // Covers the design aims of C++0x, the standards process, and the progress up until 2007\.
* B. Stroustrup: [What is C++0x?](http://www2.research.att.com/%7Ebs/what-is-2009.pdf) . CVu. Vol 21, Issues 4 and 5\. 2009\.
* Anthony Williams: [Simpler Multithreading in C++0x](http://www.devx.com/SpecialReports/Article/38883) . devx.com.
上述列表是不完整的,随着有些人出版一些新的作品,列表中的文章会过时。如果你发现有文章应该出现在这个列表中,但事实上它并没有出现,请及时联系我进行更新。并不是所有的文献都能随着标准及时更新。我会尽力保证内容的一致性。
(翻译:nivo)
- C++11 FAQ中文版 - C++11 FAQ
- Stroustrup先生关于中文版的授权许可邮件
- Stroustrup先生关于C++11 FAQ的一些说明
- 关于C++11的一般性的问题
- 您是如何看待C++11的?
- 什么时候C++0x会成为一部正式的标准呢?
- 编译器何时将会实现C++11标准呢?
- 我们何时可以用到新的标准库文件?
- C++0x将提供何种新的语言特性呢?
- C++11会提供哪些新的标准库文件呢?
- C++0x努力要达到的目标有哪些?
- 指导标准委员会的具体设计目标是什么?
- 在哪里可以找到标准委员会的报告?
- 从哪里可以获得有关C++11的学术性和技术性的参考资料?
- 还有哪些地方我可以读到关于 C++0x的资料?
- 有关于C++11的视频吗?
- C++0x难学吗?
- 标准委员会是如何运行的?
- 谁在标准委员会里?
- 实现者应以什么顺序提供C++11特性?
- 将会是C++1x吗?
- 标准中的"concepts"怎么了?
- 有你不喜欢的C++特性吗?
- 关于独立的语言特性的问题
- __cplusplus宏
- alignment(对齐方式)
- 属性(Attributes)
- atomic_operations
- auto – 从初始化中推断数据类型
- C99功能特性
- 枚举类——具有类域和强类型的枚举
- carries_dependency
- 复制和重新抛出异常
- 常量表达式(constexpr)
- decltype – 推断表达式的数据类型
- 控制默认函数——默认或者禁用
- 控制默认函数——移动(move)或者复制(copy)
- 委托构造函数(Delegating constructors)
- 并发性动态初始化和析构
- noexcept – 阻止异常的传播与扩散
- 显式转换操作符
- 扩展整型
- 外部模板声明
- 序列for循环语句
- 返回值类型后置语法
- 类成员的内部初始化
- 继承的构造函数
- 初始化列表
- 内联命名空间
- Lambda表达式
- 用作模板参数的局部类型
- long long(长长整数类型)
- 内存模型
- 预防窄转换
- nullptr——空指针标识
- 对重载(override)的控制: override
- 对重载(override)的控制:final
- POD
- 原生字符串标识
- 右角括号
- 右值引用
- Simple SFINAE rule
- 静态(编译期)断言 — static_assert
- 模板别名(正式的名称为"template typedef")
- 线程本地化存储 (thread_local)
- unicode字符
- 统一初始化的语法和语义
- (广义的)联合体
- 用户定义数据标识(User-defined literals)
- 可变参数模板(Variadic Templates)
- 关于标准库的问题
- abandoning_a_process
- 算法方面的改进
- array
- async()
- atomic_operations
- 条件变量(Condition variables)
- 标准库中容器方面的改进
- std::function 和 std::bind
- std::forward_list
- std::future和std::promise
- 垃圾回收(应用程序二进制接口)
- 无序容器(unordered containers)
- 锁(locks)
- metaprogramming(元编程)and type traits
- 互斥
- 随机数的产生
- 正则表达式(regular expressions)
- 具有作用域的内存分配器
- 共享资源的智能指针——shared_ptr
- smart pointers
- 线程(thread)
- 时间工具程序
- 标准库中的元组(std::tuple)
- unique_ptr
- weak_ptr
- system error