C++ 有多少个版本?标准有吗?
C 语言中有 C89、C99 和 C11;那么 C++ 呢?出来之后有什么升级吗?
In C there's C89, C99, and C11; what about C++? Is there any upgrade since it came out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C++98 (ISO/IEC 14882:1998) 是第一版。
C++03 (ISO/IEC 14882:2003) 是第二版,通常被认为是错误修复,但它有 许多更改。
C++11 是第三版。
C++14 是第四版。
C++17 是最新版本(截至 2017 年)。
您可以下载标准和草案的 PDF 版本。
C++98 (ISO/IEC 14882:1998) is the first edition.
C++03 (ISO/IEC 14882:2003) is the second edition and often considered a bugfix, but it has many changes.
C++11 is the third edition.
C++14 is the fourth edition.
C++17 is the latest edition (as of 2017).
You can download PDFs of the standards and drafts.