C++ 标准, C 标准

C++ 标准

  • C++98 (ISO/IEC 14882:1998) is the first edition.
  • C++03 (ISO/IEC 14882:2003) is the second edition.
  • C++11 is the third edition.
  • C++14 is the fourth edition.
  • C++17 is the fifth edition.

每次升级标准都是对之前版本的改进, 大部分是添加了基础库和扩展接口。
每个标准的特点可以在 https://isocpp.org/ 看到
最新的可能发布的草案标准在 https://github.com/cplusplus/draft

C 标准

  • K&R n/a 1978-02-22
  • C89 ANSI X3.159-1989 1989-12-14
  • C90 ISO/IEC 9899:1990 1990-12-20
  • C95 ISO/IEC 9899/AMD1:1995 1995-03-30
  • C99 ISO/IEC 9899:1999 1999-12-16
  • C11 ISO/IEC 9899:2011 2011-12-15

标准的改动可以在 https://developerinsider.co/c-programming-language-version-history/

其他的特点可以在 https://en.cppreference.com/w/ 看到

发布了69 篇原创文章 · 获赞 13 · 访问量 11万+

猜你喜欢

转载自blog.csdn.net/mutiantong/article/details/97918343