Is there an equivalent to the C# “var” keyword in C++/CLI?

前端 未结 4 1279
醉酒成梦
醉酒成梦 2020-12-16 10:50

In C#, I like the var keyword for situations like this:

var myList = new List();

Is there any equivalent in C++/

4条回答
  •  抹茶落季
    2020-12-16 11:23

    C++0x is going to have an auto keyword: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1705.pdf

提交回复
热议问题