泛型集合的使用
- List<T>使用前的准备工作
引入命名空间:System.Collections.Generic
确定存储类型:List<Student> students = new List<Student>();
- 常用方法
添加元素:Add(<T>);
删除元素:RemoveAt(索引) - 常用属性
元素个数:Count - 遍历集合
foreach(Student stu in students)
{
Console.WriteLine(stu.StudentName);
}
Dictionary<K,V>的使用
- Dictionary<K,V>通常称为字典
<K,V>约束集合中元素类型
编译时检查类型约束
无需装箱拆箱操作
与哈希表操作类似