请考虑以下代码:
string[] words =
{ "Too", "much", "of", "anything", "is" ,"good","for","nothing"};
var groups =from word in words
orderby word ascending
group word by word.Length into lengthGroups
orderby lengthGroups.Key descending
select new {Length=lengthGroups.Key, Words=lengthGroups};
foreach (var group in groups)
{
Console.WriteLine("Words of length " + group.Length);
foreach (string word in group.Words)
Console.WriteLine(" " + word);
}
为什么我们在这里需要关键字“new”?。你能给出一些其他简单的例子来正确理解它吗?
答案 0 :(得分:10)
new { A = "foo", B = "bar }
语法定义了一个匿名类型,其属性为A
和B
,值分别为“foo”和“bar”。您这样做是为了每行返回多个值。
如果没有某种类新对象,则只能返回(例如)Key
。要返回多个属性,需要值。在这种情况下,匿名类型很好,因为此数据仅用于此查询的本地。
您也可以定义自己的class
,然后使用new
代替:
new MyType("abc", "def") // via the constructor
或
new MyType { A = "abc", B = "def" } // via object initializer
除非MyType
在此背景之外具有一些有用的含义,否则这是过度的。
答案 1 :(得分:4)
new
关键字用于创建类的实例。
在这种情况下,它是一个匿名类。您可以使用相同的语法在LINQ查询范围之外创建一个不对称的对象:
object o = new { Name = "Göran" };
答案 2 :(得分:0)
此语法为Length
枚举中的每个项目创建一个匿名类型的实例,其属性为Words
和lengthGroups
。
您是在问(a)为什么语法会按原样读取,或者(b)为什么代码会创建匿名类型?
答案 3 :(得分:0)
new关键字在查询中创建匿名类型。 Linq中的匿名类型允许您调整查询结果。