C#开发之——泛型类(9.4)

一 概述

  • C#语言中泛型类的定义与泛型方法类似,是在泛型方法的名称后面加上<T>\
  • 当然,也可以定义多个类型,即"<T1,T2,...>"

二 泛型类的语法形式

2.1 语法形式

1
2
3
4
class 类名<T1,T2,…>
{
//类的成员
}
  • 这样,在类的成员中即可使用 T1、T2 等类型来定义

三 实例 定义泛型类,并在泛型类中定义数组,提供添加和显示数组中全部元素的 方法

3.1 代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
lass MyTest<T>
{
private T[] items = new T[3];
private int index = 0;
//向数组中添加项
public void Add(T t)
{
if (index < 3)
{
items[index] = t;
index++;
}
else
{
Console.WriteLine("数组已满!");
}
}
//读取数组中的全部项
public void Show()
{
foreach(T t in items)
{
Console.WriteLine(t);
}
}
}

class Program
{
static void Main(string[] args)
{
MyTest<int> test = new MyTest<int>();
test.Add(10);
test.Add(20);
test.Add(30);
test.Show();
}
}