您可以尝试: class MyList:List< MyItem> { public MyList() { } } 由于MyList总是包含MyItem对象,因此它不是泛型类 本身。You can try:class MyList : List<MyItem>{public MyList(){}}Since MyList shall always contain MyItem-objects it''s no generic classitself. 但在那个阶段,为什么不使用List< MyItem>在你的代码?据我所知,没有必要在这里创建一个新类 - 除非你是否需要增加额外的功能。 - Jon Skeet - < sk *** @ pobox.com> http://www.pobox.com/~skeet 博客: http://www.msmvps.com/jon.skeet 如果回复该群组,请执行不要给我发邮件But at that stage, why not just use List<MyItem> in your code? There''sno need to create a new class here, as far as I can see - unless you''regoing to add extra functionality, of course.--Jon Skeet - <sk***@pobox.com> http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeetIf replying to the group, please do not mail me too 这篇关于继承通用List的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-14 04:38