在下面的代码中,我不知道“ where S : new() ”部分是什么意思。在 Google 中查找更多信息的关键字是什么?
public virtual void Print<S, T>()
where S : new()
{
Console.WriteLine(default(T));
Console.WriteLine(default(S));
}
new()
约束意味着特定的泛型参数需要有一个默认构造函数(即没有参数的构造函数)。
这样做的目的通常是允许您以类型安全的方式构造泛型参数类型的新实例,而无需借助反射/Activator.CreateInstance。
例如:
public T Create<T>() where T : new()
{
// allowed because of the new() constraint
return new T();
}
有关详细信息,请查看http://msdn.microsoft.com/en-us/library/sd2w2ew5%28v=vs.80%29.aspx。
至于谷歌搜索词,我会尝试“c# new() 约束”。