这个 new[] 的简写是什么?
我似乎找不到任何关于 new[] 应该是什么的文档。从下面的例子来看,它似乎是一个对象数组简写
var json = new[] {
new object[] {"20-Jun-2008", 200 },
new object[] {"20-Jun-2009", 250 }
};
I can't seem to find any documentation on what new[] is supposed to be. From the example below it seems to be an object array shorthand
var json = new[] {
new object[] {"20-Jun-2008", 200 },
new object[] {"20-Jun-2009", 250 }
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这些是隐式类型数组。
请参阅 C# 3.0 规范。
These are implicitly typed arrays.
See C# 3.0 specifications.
该表示法是一个隐式类型化数组声明。
在你的例子中,它是一个对象数组的数组。
The notation is an implicitly typed array declaration.
In your case, it is a array of object arrays.
这意味着 new[] 是一个隐式类型数组。由于它是隐式类型的,因此您必须为其分配一些内容,如本例所示。正如您必须使用
var
关键字一样。It means that new[] is an implicitly typed array. Since it's implicitly typed, you have to assign something to it as in this example. Just as you have to with the
var
keyword.这是隐式类型。由于该集合中的所有元素都是
object
数组,因此编译器可以推断该数组本身一定是object
数组的集合。It's implicit typing. Since all the elements in that collection are
object
arrays, the compiler can deduce that the array itself must be a collection ofobject
arrays.