C#泛型约束的深入理解
程序员文章站
2024-02-12 22:16:04
where 子句用于指定类型约束,这些约束可以作为泛型声明中定义的类型参数的变量。1.接口约束。例如,可以声明一个泛型类 mygenericclass,这样,类型参数 t...
where 子句用于指定类型约束,这些约束可以作为泛型声明中定义的类型参数的变量。
1.接口约束。
例如,可以声明一个泛型类 mygenericclass,这样,类型参数 t 就可以实现 icomparable<t> 接口:
public class mygenericclass<t> where t:icomparable { }
2.基类约束:指出某个类型必须将指定的类作为基类(或者就是该类本身),才能用作该泛型类型的类型参数。
这样的约束一经使用,就必须出现在该类型参数的所有其他约束之前。
class myclassy<t, u>
where t : class
where u : struct
{
}
3.where 子句还可以包括构造函数约束。
可以使用 new 运算符创建类型参数的实例;但类型参数为此必须受构造函数约束 new() 的约束。new() 约束可以让编译器知道:提供的任何类型参数都必须具有可访问的无参数(或默认)构造函数。例如:
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 子句
例如:
interface myi { }
class dictionary<tkey,tval>
where tkey: icomparable, ienumerable
where tval: myi
{
public void add(tkey key, tval val)
{
}
}
5.还可以将约束附加到泛型方法的类型参数,例如:
public bool mymethod<t>(t t) where t : imyinterface { }
请注意,对于委托和方法两者来说,描述类型参数约束的语法是一样的:
delegate t mydelegate<t>() where t : new()
1.接口约束。
例如,可以声明一个泛型类 mygenericclass,这样,类型参数 t 就可以实现 icomparable<t> 接口:
复制代码 代码如下:
public class mygenericclass<t> where t:icomparable { }
2.基类约束:指出某个类型必须将指定的类作为基类(或者就是该类本身),才能用作该泛型类型的类型参数。
这样的约束一经使用,就必须出现在该类型参数的所有其他约束之前。
复制代码 代码如下:
class myclassy<t, u>
where t : class
where u : struct
{
}
3.where 子句还可以包括构造函数约束。
可以使用 new 运算符创建类型参数的实例;但类型参数为此必须受构造函数约束 new() 的约束。new() 约束可以让编译器知道:提供的任何类型参数都必须具有可访问的无参数(或默认)构造函数。例如:
复制代码 代码如下:
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 子句
例如:
复制代码 代码如下:
interface myi { }
class dictionary<tkey,tval>
where tkey: icomparable, ienumerable
where tval: myi
{
public void add(tkey key, tval val)
{
}
}
5.还可以将约束附加到泛型方法的类型参数,例如:
复制代码 代码如下:
public bool mymethod<t>(t t) where t : imyinterface { }
请注意,对于委托和方法两者来说,描述类型参数约束的语法是一样的:
复制代码 代码如下:
delegate t mydelegate<t>() where t : new()
上一篇: 详解spring注解式参数校验
下一篇: 解析C#自定义控件的制作与使用实例的详解