在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
(一)泛型类
new()
where Y : B, new()
where Z : class, new()
{
}
public class GenClass : GenericClassBase<A, BB, C> { }
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<T>(Employee model) 可是,编译器提示无法将类型转换为T,之前竟然没碰到过这个问题。查了一下资料,原来,要这么写: public class GenericTest 天杀的ms。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论