泛型 学习
1.泛型接口 例子 https://blog.csdn.net/aladdinty/article/details/3486532?utm_source=blogxgwz1
2.泛型类 https://www.cnblogs.com/qicao/p/9126060.html
类实现 泛型接口的两个方法 :
(1).直接在子类后面 声明泛型(定义具体的类型)
(2.) 在子类 实现接口的方法中 给出具体泛型类型
3.https://blog.csdn.net/lidandan2016/article/details/78962494
4. 微软:泛型数组
https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/generics/generics-and-arrays
5. 微软:泛型委托
https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/generics/generic-delegates