MyLis

使⽤泛型和索引器实现集合类MyLis

1 using System; 2 3 namespace _01_调试和错误排查 4 { 5 class MyList<T> 6 { 7 private T[] data = new T[4]; 8 private int count = 0; 9 10 //索引器 11 public T thi ......
索引 MyLis
共1篇  :1/1页 首页上一页1下一页尾页