Should I use C++0x Features Now?

前端 未结 6 970
悲&欢浪女
悲&欢浪女 2021-02-07 01:41

With the official release of VS 2010, is it safe for me to start using the partially-implemented C++0x feature set in my new code?

The features that are of interest to m

6条回答
  •  长发绾君心
    2021-02-07 01:57

    The C++0X feature set is pretty fixed by now, so I'd say go for it. The final draft of the proposal should be done in august according to wikipedia.

    A lot of the things are available from boost anyway (actually, a lot of 0X things come from boost) - see boost TR1. You can re-use those features through boost even if the compiler isn't fully C++0X.

提交回复
热议问题