在哪里可以了解有关 C++0x 的更多信息?
我想了解有关 C++0x 的更多信息。 有哪些好的参考资料和资源? 有人写过一本关于这个主题的好书吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想了解有关 C++0x 的更多信息。 有哪些好的参考资料和资源? 有人写过一本关于这个主题的好书吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
有关
Lambda 表达式、
类型特征库,
右值参考,
概念,
可变参数模板,
shared_ptr
正则表达式
元组
多线程
一般讨论
C/C++ 用户日志,
新 C++,
文章
视频
Google 技术讲座
各种功能概述
维基百科概述
库
提升
Articles on
Lambda Expressions,
The Type Traits Library,
The rvalue Reference,
Concepts,
Variadic Templates,
shared_ptr
Regular Expressions
Tuples
Multi Threading
General Discussion
The C/C++ Users Journal,
The New C++,
Article
Videos
Google tech talk
overview of various features
overview at wikipedia
Library
Boost
Herb Sutter 的博客,他发布了 C++0x 的新进展并链接到详细参考资料
Bjarne Stroustrup 的网站
两人都是 ISO-C++ 标准委员会成员。 赫伯·萨特 (Herb Sutter) 将发布他参加的每次会议的最新情况。
工作草案,编程标准
语言C++
Herb Sutter's blog, He posts new developments in C++0x and links to detailed references
Bjarne Stroustrup's Website
Both are ISO-C++ standards committee members. Herb Sutter will posts an update on each meeting that he attends.
Working Draft, Standard for Programming
Language C++
维基百科文章似乎是一个很好的起点: C++0x
它提供了很好的总结,带有简短的示例,并定期更新以匹配最新的添加内容。
Wikipedia article seems like an excellent starting point: C++0x
It provides a good summary with brief examples and is updated regularly to match latest additions.
这是有关该主题的两个视频。 它们有点老了,但仍然非常相关:
下一个 C++ 标准中的新功能 ( http://www.youtube.com/watch?v= ZAG5txfYnW4 ) 和编程语言系列高级主题:C++ 线程
Here are two videos on the subject. They are a bit old, but still very relevant:
New Features in the Next C++ Standard ( http://www.youtube.com/watch?v=ZAG5txfYnW4 ) and Advanced Topics in Programming Languages Series: C++ Threads
这个网站上有大量的内容 - 有些帖子包含非常丰富的讨论。 我建议您使用 Google,但在C++0x 标记的帖子中搜索会更有效我在这里。
这是一个一个好的开始,其中包括间接到Stroustrup 自己的总结。 Scott Meyers 在此处提供了有关该主题的演示材料。
检查您最喜欢的编译器对新版本的支持。 Microsoft VC10 支持总结此处。 GCC 信息可以在此处找到。
该语言标准的官方状态可在此处获取。 该语言的演变在许多地方都与 Boost 中正在进行的工作相关。 请参阅此处了解相关信息。
老实说,现在我更喜欢在这里查找 99% 的所需信息,而不是求助于书籍。
There is a ton of stuff on this very site - some of the posts include very informative discussion. I would point you to Google but it's going to be more efficient to search in C++0x tagged posts here imo.
Here's a good one to start with, which includes indirection to Stroustrup's own summary. Scott Meyers has presentation materials on the topic here.
Check up on your favourite compiler's support for the new version. Microsoft VC10 support is summarized here. GCC info can be found here.
Official state of the standard for the language is available here. Evolution of the language is in many places tied to ongoing work in Boost. See here for some info on that.
Honestly my preference these days is to look here for 99% of needed info rather than resort to a book.
您可以参考 Scott Meyers 的演示材料:新 C++ (C++0x) 概述。
You may refer Presentation Materials: Overview of the New C++ (C++0x) by Scott Meyers.