new version of c++

后端 未结 3 2041
独厮守ぢ
独厮守ぢ 2021-01-06 14:55

Is there going to be a new version of C++ and when?

3条回答
  •  不思量自难忘°
    2021-01-06 15:36

    The C++0x is the unofficial name for the new C++ Standard which is intended to replace C++03 standard (published in 2003). The final draft of the international standard is due in March of 2011. However this does not mean you will be able to use the new features straight away as the standards will have to be implemented by compilers and the completeness of these implementations will vary.

    You can find a draft of the new standard here:

    • http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3092.pdf

    However you can use the Technical Release 1 libraries which include a fair deal of functionality that will appear in the new standard which you can find here:

    • http://en.wikipedia.org/wiki/C%2B%2B_Technical_Report_1

    If you are looking for the status of the C++ox implementation in GCC (which is a free compiler) see this link:

    • http://gcc.gnu.org/gcc-4.5/cxx0x_status.html

    Here is a link to a really detailed FAQ that provides a lot of additional information:

    • http://www2.research.att.com/~bs/C++0xFAQ.html

提交回复
热议问题