PDA

View Full Version : Are QT + mingw using c++0x ?



tonnot
14th April 2011, 11:13
Often I see references about c++0x and I ask myself if it can be interesting.
I have Qt + Mingw.
Any idea? Pros and cons ? Thanks

Zlatomir
14th April 2011, 12:27
When i searched for MinGW C++0x features, i didn't found a list, but since MinGW is a GCC port i assume that the GCC list apply here, if you installed the Qt SDK you have MinGW (port of GCC version 4.4.0) so this is the list of 0x features that are included (http://gcc.gnu.org/gcc-4.4/cxx0x_status.html)

tonnot
14th April 2011, 12:48
And, do you recommend me to learn c++0x ??

Zlatomir
14th April 2011, 12:58
C++0x isn't a new language - it's still C++ with some new language features and some new libraries (and i think some other libraries moved from tr1 namespace to std namespace).

You can (and you will in the future) learn some features and most likely you can ignore some other features, you can read about C++0x here (http://en.wikipedia.org/wiki/C%2B%2B0x) (on wikipedia) and here (http://www2.research.att.com/~bs/C++0xFAQ.html) is Stroustrup's 0x FAQ.