这个是目前最新的C++标准,是2011年9月发布的ISO/IEC 14882:2011[1],又称C++0x或C++11。虽然C++免专利,但标准文件本身并不是免费的,尽管标准文档不是免费的,但是很容易从网络中取得,最简单的就是C++标准文档之前的最后一次草稿版本,它与标准的差别几乎只在于排版上。本人上传的是最终正式版,不是Draft版,PDF文档,非扫描版,纯英文,1300多页,需要的时候可以查阅。现在0下载豆分享,希望大家支持。
Contents
Contents iii
List of Tables xi
List of Figures xv
1 General 1
1.1 Scope . . . . . . . . . . . . . . 1
1.2 Normative references . . . . . . . . 1
1.3 Terms and definitions . . . . . .. . 2
1.4 Implementation compliance . . . . . 5
1.5 Structure of this International Standard . . . . . 6
1.6 Syntax notation . . . . 6
1.7 The C++ memory model . . . . 7
1.8 The C++ object model . . .. . 7
1.9 Program execution . . . . 8
1.10 Multi-threaded executions and dataraces . . 12
1.11 Acknowledgments . . . . . . . . . 16
2 Lexical conventions 17
2.1 Separate translation . . . . . 17
2.2 Phases of translation . . . . 17
2.3 Character sets . . . . . . . . 18
2.4 Trigraph sequences . . . . 19
2.5 Preprocessing tokens . . . . 20
2.6 Alternative tokens . . . . . 21
2.7 Tokens . . . . . . . . . 21
2.8 Comments . . . . .. . . . . 21
2.9 Header names . . . . . . . 22
2.10 Preprocessing numbers . . . . . 22
2.11 Identifiers . . . . . . . . . 22
2.12 Keywords . . . . . . . . .. 23
2.13 Operators and punctuators . 24
2.14 Literals . . . . . . . . . . . . . . . . . . . 24
目录太长了,copy这么多吧,想看具体的就下载吧,反正不要分。
1