摘要:
之所以会用到default关键字,是因为需要在不知道类型参数为值类型还是引用类型的情况下,为对象实例赋初值。考虑以下代码: class TestDefault<T> { public T foo() { T t = null; //??? return t; } } View Code 引入了def 阅读全文
摘要:
泛型通常用在集合和集合上运行的方法中; 泛型NET Framework2.0提供一个新的命名空间System。Collections。Generic。 早期集合缺点: System.Collections.ArrayList list = new System.Collections.ArrayLi 阅读全文