使用场景
在编译时可以不指定具体类型,在具体使用时指定,从而代码具有较高的通用性。
示例代码
- 定义
public class GenericTest<T>
{
T[] array;
public GenericTest(int size)
{
array = new T[size];
}
public T get(int index)
{
return array[index];
}
public void set(int index, T value)
{
array[index] = value;
}
}
- 使用
public class MyGenericTest
{
public static void main(String[] args)
{
var size = 6;
GenericTest<String> t = new GenericTest<String>(size);
for (int i = 0; i < size; i++)
{
// t.set(i, Convert.ToString(i));
t.set(i, i.ToString());
}
for (int i = 0; i < size; i++)
{
Console.WriteLine(t.get(i));
}
}
}
标签:index,15,C#,int,GenericTest,泛型,array,public,size
From: https://www.cnblogs.com/huiy/p/18513438