Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建自己的继承自 ArrayList 的类。(我想向 ArrayList 添加一些我需要的功能)
我希望我的 MyArrayList 仍然是通用的,意味着 - MyArrayList。
我怎样才能做到这一点?
谢谢
如果您想要通用列表而不是更好地使用List<T>.
List<T>
要添加额外的功能,您可以使用扩展方法
ArrayList的定义已经是通用的,因为它是一个objects.
objects
没有比objectCLR 更通用的了。
object
如果您的意思是泛型( <T>),只需使用List<T>.
<T>