C#泛型

2021-05-19 11:28

阅读:602

标签:isp   element   order   https   image   cep   dex   new   泛型类   

(一)泛型类

技术图片

技术图片技术图片
代码public class GenericClassBase where X : IComparable, new()
    where Y : B, new()
    where Z : class, new()
{

}
public class GenClass : GenericClassBase { }
public class A : IComparable
{
    public int CompareTo(object obj)
    {
        throw new NotImplementedException();
    }
}
public class BB : B { }
public class B { }
public class C { }

 

我的本意是要将一个实体参数转换为泛型对象T返回,所以初次代码就写成下面这样:

技术图片

技术图片

public static T GetObj(Employee model)
        {
            T result = default(T);
if (model is T)
            {
                result = (T)model; //或者  result = model as T;
            }
return result;
        }

技术图片

可是,编译器提示无法将类型转换为T,之前竟然没碰到过这个问题。查了一下资料,原来,要这么写:

技术图片

技术图片

public class GenericTest
    {
//public static T GetObj(Employee model)
//{
//    T result = default(T);
//    if (model is T)
//    {
//        result = (T)model; //或者  result = model as T;
//    }
//    return result;
//}
public static T GetObj(Employee model)
        {
            T result = default(T);
if (model is T)
            {
                result = (T)(object)model; //或 (T)((object)model);
            }
return result;
        }
    }

技术图片

天杀的ms。

C#泛型

标签:isp   element   order   https   image   cep   dex   new   泛型类   

原文地址:https://www.cnblogs.com/lihuali/p/11711395.html


评论


亲,登录后才可以留言!