C++2.0 new features learning materials

Frequently used websites about the new standard

About the new standard book recommendation

About language

  • C++ Primer (written by the author of the first C++ compiler)
  • The C++ Programming Language (written by the father of C++)

About the standard library

  • Effective Modern C++ (expert-level experience)
  • The C++ STANDARD LIBRARY

Note: Choose books published in 2011 and later

Full-text search tool recommendation

Check whether the compiler supports the new features of C++2.0

#include <iostream>
using namespace std;

int main() 
{
    
    
	cout << __cplusplus << endl;
	return 0;
}

Note: The output 199711 only supports the C++98 standard, and the output 201103 only supports the new C++11 standard.

Dev-C++ environment opens new feature support

Guess you like

Origin blog.csdn.net/oTianLe1234/article/details/114175458