C#泛型

本文详细介绍了C#中的泛型概念,包括泛型类、结构、接口、委托及方法等。探讨了泛型约束的使用,如基类约束、接口约束、构造器约束和值类型/引用类型约束。

C#泛型类与结构
C#除可单独声明泛型类型(包括类与结构)外,也可在基类中包含泛型类型的声明。但基类如果是泛型类,它的类型参数要么已实例化,要么来源于子类(同样是泛型类型)声明的类型参数。
class C<U, V> {} //合法
class D: C<string,int>{} //合法
class E<U, V>: C<U, V> {} //合法
class F<U, V>: C<string, int> {} //合法
class G : C<U, V> { } //非法

泛型类型的成员
class C<V>{
public V f1; //声明字段
public D<V> f2; //作为其他泛型类型的参数
public C(V x) {
this.f1 = x;
}
}
泛型类型的成员可以使用泛型类型声明中的类型参数。但类型参数如果没有任何约束,则只能在该类型上使用从System.Object继承的公有成员。

泛型接口
interface IList<T> {
T[] GetElements();
}
interface IDictionary<K,V> {
void Add(K key, V value);
}
// 泛型接口的类型参数要么已实例化,
// 要么来源于实现类声明的类型参数
class List<T> : IList<T>, IDictionary<int, T> {
public T[] GetElements() { return null; }
public void Add(int index, T value) { }
}
泛型委托
delegate bool Predicate<T>(T value);
class X {
static bool F(int i) {...}
static bool G(string s) {...}
static void Main() {
Predicate<string> p2 = G;
Predicate<int> p1 = new Predicate<int>(F);
}
}
泛型委托支持在委托返回值和参数上应用参数类型,这些参数类型同样可以附带合法的约束。
泛型方法简介
• C#泛型机制只支持“在方法声明上包含类型参数”——即泛型方法
• C#泛型机制不支持在除方法外的其他成员(包括属性、事件、索引器、构造器、析构器)的声明上包含类    型参数,但这些成员本身可以包含在泛型类型中,并使用泛型类型的类型参数
• 泛型方法既可以包含在泛型类型中,也可以包含在非泛型类型中
泛型方法的声明与调用
//不是泛型类,是一个具体的类,这个类不需要泛型类型的实例化
public class Finder {
// 但是是一个泛型方法,请看泛型方法的声明,参数要求泛型化
public static int Find<T> ( T[] items, T item) {
for(int i=0;i<items.Length;i++){
if (items[i].Equals(item)) { return i; }
}
return -1;
}
}
// 泛型方法的调用<int>不是放到Finder后面,而是放在Find后面。
int i=Finder.Find<int> ( new int[]{1,3,4,5,6,8,9}, 6);

泛型方法的重载
class MyClass {
void F1<T>(T[] a, int i); // 不可以构成重载方法
void F1<U>(U[] a, int i);
void F2<T>(int x); //可以构成重载方法
void F2(int x);
//两句申明一样,where字句,T继承A,泛型参数必需要继承A
void F3<T>(T t) where T : A; //不可以构成重载方法
void F3<T>(T t) where T : B;
}
泛型方法的重写
abstract class Base
{
public abstract T F<T,U>(T t, U u) where U: T;
public abstract T G<T>(T t) where T: IComparable;
}
class Derived: Base{
//合法的重写,约束被默认继承,只需要写方法的签名
public override X F<X,Y>(X x, Y y) { }
//非法的重写,指定任何约束都是多余的
//重写的时候,不能写约束,也不添加新的约束,只能继承父类的约束。
public override T G<T>(T t) where T: IComparable {}
}
泛型约束简介
• C#泛型要求对“所有泛型类型或泛型方法的类型参数”的任何假定,都要基于“显式的约束”,以维护
C#所要求的类型安全。
• “显式约束”由where子句表达,可以指定“基类约束”,“接口约束”,“构造器约束”“值类型/引用类型约束”共四种约束。
• “显式约束”并非必须,如果没有指定“显式约束”,泛型类型参数将只能访问System.Object类型中的公有方法。
基类约束
class A { public void F1() {…} }
class B { public void F2() {…} }
class C<S,T>
where S: A // S继承自A
where T: B // T继承自B
{
// 可以在类型为S的变量上调用F1,
// 可以在类型为T的变量上调用F2
….
}
接口约束
interface IPrintable { void Print(); }
interface IComparable<T> { int CompareTo(T v);}
interface IKeyProvider<T> { T GetKey(); }
class Dictionary<K,V>
where K: IComparable<K>
where V: IPrintable, IKeyProvider<K>
{
// 可以在类型为K的变量上调用CompareTo,
// 可以在类型为V的变量上调用Print和GetKey
….
}
构造器约束
class A { public A() { } }
class B { public B(int i) { } }
class C<T>
where T : new()
{
//可以在其中使用T t=new T();
….
}
C<A> c=new C<A>(); //可以,A有无参构造器
C<B> c=new C<B>(); //错误,B没有无参构造器
值类型/引用类型约束
public struct A { … }
public class B { … }
class C<T>
where T : struct
{
// T在这里面是一个值类型

}
C<A> c=new C<A>(); //可以,A是一个值类型
C<B> c=new C<B>(); //错误,B是一个引用类型

总结
• C#的泛型能力由CLR在运行时支持,它既不同于C++在编译时所支持的静态模板,也不同于Java在编译器层面使用“搽拭法”支持的简单的泛型。
• C#的泛型支持包括类、结构、接口、委托共四种泛型类型,以及方法成员。
• C#的泛型采用“基类, 接口, 构造器, 值类型/引用类型”的约束方式来实现对类型参数的“显式约束”,它不支持C++模板那样的基于签名的隐式约束。 
C# 为编程提供了极大便利,以下是有关 C# 的使用方法、特性及相关知识: ### 使用方法 - **集合**:集合是 C# 中常用的应用场景,它允许在集合中存储特定类的元素。例如 `List<T>`,其中 `T` 是元素的类。以下是一个使用 `List<int>` 的示例: ```csharp using System; using System.Collections.Generic; class Program { static void Main() { List<int> numbers = new List<int>(); numbers.Add(1); numbers.Add(2); numbers.Add(3); foreach (int number in numbers) { Console.WriteLine(number); } } } ``` - **方法**:方法允许在方法中使用类参数。以下是一个简单的方法示例,用于交换两个变量的值: ```csharp class Program { static void Swap<T>(ref T a, ref T b) { T temp = a; a = b; b = temp; } static void Main() { int x = 1; int y = 2; Swap(ref x, ref y); Console.WriteLine($"x: {x}, y: {y}"); } } ``` - **类**:类是包含类参数的类。例如,创建一个简单的类来存储两个值: ```csharp class Pair<T1, T2> { public T1 First { get; set; } public T2 Second { get; set; } public Pair(T1 first, T2 second) { First = first; Second = second; } } class Program { static void Main() { Pair<int, string> pair = new Pair<int, string>(1, "Hello"); Console.WriteLine($"First: {pair.First}, Second: {pair.Second}"); } } ``` - **委托**:委托允许定义接受参数的委托。例如,C# 中的 `Func` 委托就是一个委托,以下是一个使用 `Func` 委托的示例: ```csharp public delegate TR Func<T1, T2, TR>(T1 p1, T2 p2); class Simple { static public string PrintString(int p1, int p2) { int total = p1 + p2; return total.ToString(); } } class Program { static void Main() { var myDel = new Func<int, int, string>(Simple.PrintString); Console.WriteLine($"Total: {myDel(15, 13)}"); } } ``` ### 特性 - **类参数化**:允许将类作为参数,使得代码可以处理多种不同类的数据,实现代码复用,提高软件开发工作效率 [^4]。 - **性能提升**:第一次用值类作为参数来构造时,运行库会创建专用,将提供的参数代入到 MSIL 中的适合位置。对于每个用作参数的唯一值类,都会创建一次专用 C# 。这种特定类类相当于包含特定值类的本地代码,对性能提升有帮助 [^2]。 ### 相关知识 - **官方概述**:是程序设计语言的一种特性,允许程序员在强类程序设计语言中编写代码时定义一些可变部分,那些部分在使用前必须作出指明。各种程序设计语言和其编译器、运行环境对的支持均不一样 [^4]。 - **扩展方法和类**:C# 的 LINQ 特性大量使用了委托,在使用 LINQ 时会涉及到很多委托的应用 [^3]。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值