您的位置:首页 > 其它

WHERE约束

2015-10-10 14:03 232 查看
where 用于指定类型约束:这些约束可以作为泛型声明中定义的类型参数的实参。泛型<T>的约束。

1.接口约束

例如,可以声明一个泛型类 MyGenericClass,这样,类型参数 T 就可以实现 IComparable<T> 接口:

<pre name="code" class="csharp">public class MyGenericClass<T> where T:IComparable { }


[/code]

2.基类约束,以指出某个类型必须将指定的类作为基类(或者就是该类本身),才能用作该泛型类型的类型参数。 这样的约束一经使用,就必须出现在该类型参数的所有其他约束之前。
<pre name="code" class="csharp" style="line-height: 18.8999996185303px;">class MyClass<T, U>
where T : class
where U : struct
{ }



3.构造函数约束。 可以使用
new 运算符创建类型参数的实例;但类型参数为此必须受构造函数约束 new()的约束。 new()
约束可以让编译器知道:提供的任何类型参数都必须具有可访问的无参数(或默认)构造函数。不能使用带参构造函数,如new(string s)。
一般情况下,无法创建一个泛型类型参数的实例。但在使用new()约束时,就可以通过调用该无参构造函数来创建对象。

<pre name="code" class="csharp" style="line-height: 18.8999996185303px;">public class MyGenericClass<T> where T : IComparable, new()
{
// The following line is not possible without new() constraint:
T item = new T();
}



new() 约束出现在 where 子句的最后。

4.对于多个类型参数,每个类型参数都使用一个 where 子句。
<pre name="code" class="csharp" style="line-height: 18.8999996185303px;">interface IMyInterface
{
}

class Dictionary<TKey, TVal>
where TKey : IComparable, IEnumerable
where TVal : IMyInterface
{
public void Add(TKey key, TVal val)
{
}
}



5.还可以将约束附加到泛型方法的类型参数。
<pre name="code" class="csharp" style="line-height: 18.8999996185303px;">public bool MyMethod<T>(T t) where T : IMyInterface { }



请注意,对于委托和方法两者来说,描述类型参数约束的语法是一样的:
<pre name="code" class="csharp" style="line-height: 18.8999996185303px;">delegate T MyDelegate<T>() where T : new()




                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: