是否有相当于 C# 的“var” C++/CLI 中的关键字?
在 C# 中,我喜欢在以下情况下使用 var
关键字:
var myList = new List<MyType>();
C++/CLI 中是否有等效项,或者我必须每次都重复类型名称,就像这样:
List<MyType ^>^ myList = gcnew List<MyType ^>();
无法在中找到显式语句到目前为止的文档或谷歌。我正在使用 Visual Studio 2008。
2022 年的附录: 由于接受的答案正确无误,今天有 auto
关键字。我们现在已经使用它很多年了,它对于托管和非托管类型都可以完美地工作。
In C#, I like the var
keyword for situations like this:
var myList = new List<MyType>();
Is there any equivalent in C++/CLI, or do I have to repeat the type name everytime just like this:
List<MyType ^>^ myList = gcnew List<MyType ^>();
Could not find an explicit statement in the docs or by Google so far. I am using Visual Studio 2008.
Addendum from 2022: as the accepted answer states correctly, today there is the auto
keyword. We are now using this for years, and it works flawlessly for both managed and unmanaged types.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 Visual Studio 2008 中没有这样的等效项。但是,在 Visual Studio 2010 中,您可以使用
auto
关键字来实现类似于 C++ 中的var
语义。我知道这适用于非托管 C++,并且我相当确定它也适用于 C++/CLI。In Visual Studio 2008 there is no such equivalent. However with Visual Studio 2010 you can use the
auto
keyword to implementvar
like semantics in C++. I know this works with non-managed C++ and I'm fairly certain it works for C++/CLI as well.我知道 C++1x 标准中设想了类型推断:
目前,据我所知,没有同等的东西。
I know that type inference is envisioned in the C++1x standard:
Currently, AFAIK, there is no equivalent.
C++ 有 typedef。只需使用 typedef 为这些多毛类型命名,并使用友好的名称即可。
不,没有“var”关键字。依稀记得boost中有一些类似的东西。
C++ has typedef. Just alias those hairy types with a typedef, and use the friendly name.
No, there's no "var" keyword. Vaguely recall there's something to that effect in boost.
C++0x 将有一个 auto 关键字: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1705.pdf
C++0x is going to have an auto keyword: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1705.pdf