码迷,mamicode.com
首页 > Windows程序 > 详细

C#泛型约束

时间:2015-06-01 16:47:56      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:c#   泛型   

    //使用泛型约束,约束了T只能是值类型
    class MyClass<T> where T : struct { }

    //使用泛型约束,约束了T只能是引用类型
    class MyClass<T> where T : class { }

    //限制T必须是实现了某个接口的类型
    //要求T必须是实现了IComparable接口的子类型对象或者就是该接口
    class MyClass<T> where T : IComparable { }

    //要求T必须是Person类型,或者是Person类的子类
    class MyClass<T> where T : Person { }

    //要求T必须是Person类型,或者是Person类的子类
    class MySchool<T>
        where T : Person
        where T : new()//要求将来传递进来的类型必须具有一个无参数的构造函数
    { }

    //对T没有要求,但是V必须是T类型或者T类型的子类型
    class MyClass<T, V>
        where V : T
    { }

C#泛型约束

标签:c#   泛型   

原文地址:http://blog.csdn.net/duoduoluojia/article/details/46311121

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!