Continued from Generics 2
20.4 Generic delegate declaration
The delegate declaration can contain type parameters.
delegate-declaration:
attributes opt delegate-modifiers op t delegate return-type identifier type-parameter-list opt
(formal-parameter-list opt) type-parameter-constraints-clauses opt ;
(Delegation declaration: Attributes optional delegate modifier optional delegate return type identifier type parameter list optional (formal parameter list optional) type parameter constraint statement optional
A delegate declared using type parameters is a Generic delegate declarations. A delegate declaration can support type parameter constraint statements (§20.7) only if it supports a type parameter list. Except as noted, generic delegate declarations follow the same rules as regular delegate declarations. Each type parameter in the declaration defines a name in the specific declaration space associated with the delegate. The scope of the type parameter in the delegate declaration includes the return type, the formal parameter list, and the type parameter constraint statement ##.
#Like other generic type declarations, type arguments must be given to form the constructed delegate type. The parameters and return values of the constructed delegate type are replaced by the actual parameters corresponding to each type parameter of the constructed delegate type in the delegate declaration. The result return type and parameter type are used to determine what method is compatible with the constructed delegate type. For example,
##
delegate bool Predicate<T>(T value) class X { static bool F(int i){…} static bool G(string s){…} static void Main(){ Predicate<int> p1 = F; Predicate<string> p2=G; } }
Note that the two assignments in the previous Main method are equivalent to the following. The longer form of .
static void Main(){ Predicate<int> p1 = new Predicate<int>(F); Predicate<string> p2 = new Predicate<string>(G); }
The shorter form is also possible due to method group conversion, which is explained in §21.9
20.5 construct. Type
A generic type declaration does not itself represent a type. Instead, a generic type declaration is used to form a "blueprint" for many different types by applying type arguments. Type parameters are written in angle brackets. between, and immediately after the generic type declaration name. A type that is named with at least one actual parameter is called a constructed type. Constructed types can be used in most places where type names can appear in the language.
##
type-name:(类型名字:) namespace-or-type-name(命名空间或类型名字) namespace-or-type-name:(命名空间或类型名字:) identifier type-argument-list(标识符类型实参列表可选) namespace-or-type-name. identifier(命名空间或类型名字.标识符) type-argument-list opt(类型实参列表可选)
Constructed types can also be used in expressions as a simple name (§20.9.3) or to access a member (§20.9.4). When namespace or type names are evaluated, only generic types with the correct number of type parameters are considered, whereby types are identified with the same identifier whenever they have a different number of type parameters and are declared in different namespaces. Different types are possible. This is useful for mixing generic and non-generic classes in the same program.
namespace System.Collections { class Queue{…} } namespace Sysetm.Collections.Generic { class Queue<ElementType>{…} } namespace MyApplication { using System.Collections; using System.Collections.Generic; class X { Queue q1; //System.Collections.Queue Queue<int> q2;//System.Collections.Generic.Queue } }
The detailed rules for name lookups in these codes are described in §20.9. Resolution of ambiguities in these codes is described in §20.6.5.
A type name may identify a constructed type even though it does not directly specify type parameters. This situation occurs when a type is nested within a generic class declaration, and the instance type of the containing declaration will be used implicitly due to name lookup (§20.1.2).
class Outer<T> { public class Inner{…} public Inner i; //i的类型是Outer<T>.Inner }
In unsafe code, constructed types cannot be used as unmanaged types (§18.2).
20.5.1 Type Arguments
Each actual parameter in a type parameter list is just a type.
type-argument-list:(类型实参列表:) <type-arguments>(<类型实参>) type-arguments:(类型实参:) type-argument(类型实参) type-arguments, type-argument(类型实参,类型实参) type-argument:(类型实参:) type(类型)
Type arguments, in turn, can also be constructed types or type parameters. In unsafe code (§18), type arguments cannot be pointer types. Each type argument must comply with any constraints on the corresponding type parameter (§20.7.1).
20.5.2开放和封闭类型
所有类型都可以被分为开放类型(open type)或封闭类型(closed type)。开放类型是包含类型参数的类型。更明确的说法是
类型参数定义了一个开放类型
数组类型只有当其元素是一个开放类型时才是开放类型
构造类型只有当其类型实参中的一个或多个是开放类型时,它才是开放类型
非开放类型都是封闭类型。
在运行时,在泛型类型声明中的所有代码都在一个封闭构造类型的上下文执行,这个封闭构造类型是通过将类型实参应用到泛型声明中创建的。在泛型类型中的每个类型实参被绑定到一个特定运行时类型。所有语句和表达式的运行时处理总是针对封闭类型发生,而开放类型只发生在编译时处理。
每个封闭构造类型都有它自己的一组静态变量,它们并不被其他封闭类型共享。因为在运行时不存在开放类型,所以开放类型没有关联的静态变量。如果两个封闭构造类型是从同一个类型声明构造的,并且对应的类型实参也是相同的类型,那么它们就是相同的类型。
20.5.3构造类型的基类和接口
构造类类型有一个直接基类,就像是一个简单类类型。如果泛型类声明没有指定基类,其基类为object。如果基类在泛型类声明中被指定,构造类型的基类通过将在基类声明中的每个类型参数,替代为构造类型对应类型实参而得到。给定泛型类声明
class B<U , V>{…} class G<T>:B<string , T[]>{…}
构造类型G
相似地,构造类、结构和接口类型有一组显式的基接口。显式基接口通过接受泛型类型声明中的显式基接口声明和某种替代而形成,这种替代是将在基接口声明中的每个类型参数,替代为构造类型的对应类型实参。
一个类型的所有基类和基接口通过递归地得到中间基类和接口的基类与接口而形成。例如,给定泛型类声明
class A {…} class B<T>:A{…} class C<T>:B<IComparable<T>>{…} class D<T>:C<T[]>{…} D<int>的基类是C<int[]>,B<IComparable<int[]>>,A和object。
20.5.4构造类型的成员
构造类型的非继承成员通过替代成员声明的类型实参,构造类型的对应类型实参而得到。
例如,给定泛型类声明
class Gen<T,U> { public T[,],a; public void G(int i ,T t , Gen<U, T> gt){…} public U Prop(get{…}) set{…}} public int H{double d}{…} }
构造类型Gen
public int[,][] a; public void G(int I , int[] t , Gen<IComparable<string>,int[] gt>){…} public IComparable<string> Prop{get{…} set{…}} public int H(double d){…}
注意替代处理是基于类型声明的语义意义的,并不是简单的基于文本的替代。在泛型类声明Gen中的成员a的类型是“T的二维数组” 因此在先前实例化类型中的成员a的类型是“int型的一维数组的二维数组”或int[,][]。
构造类型的继承成员以一种相似的方法得到。首先直接基类的所有成员是已经确定的。如果基类自身是构造类型这可能包括当前规则的递归应用。然后,继承成员的每一个通过将成员声明中的每个类型参数,替代为构造类型对应类型实参而被转换。
class B<U> { public U F(long index){…} } class D<T>:B<T[]> { public T G(string s){…} }
在先前的例子中,构造类型D
20.5.5构造类型的可访问性
当构造类型C
20.5.6转换
构造类型遵循与非泛型类型相同的规则(§6)。当应用这些规则时,构造类型的基类和接口必须按§20.5.3中所描述的方式确定。
除了那些在§6中所描述的之外,构造引用类型之间不存在特别的转换。尤其是,不像数组类型,构造引用类型不允许“co-variant”转换。也就是说,类型List不能转换到类型List(无论是隐式或显式)即使是B派生于A也是如此。同样,也不存在从List到List
class A {…} class B:A{…} class Colletion{…} class List<T>:Collection{…} class Test { void F() { List<A> listA = new List<A>(); List<B> listB= new List<B>(); Collection c1 = listA; //OK,List<A>是一个集合 Collection c2 = listB; //OK,List<B>是一个集合 List<A> a1 = listB; //错误,没有隐式的转换 List<A> a2 = (List<A>)listB; //错误,没有显式的转换 } }
20.5.7System.Nullable
在.NET基类库中定义了泛型结构类型System.Nullable
可以从一个null类型向任何由System.Nullable
Nullable<int> x = null; Nullable<string> y = null;
和下面的写法相同。
Nullable<int> x = Nullable<int>.default; Nullable<string> y = Nullable<string>.default;
20.5.8使用别名指令
使用别名可以命名一个封闭构造类型,但不能命名一个没有提供类型实参的泛型类型声明。例如
namespace N1 { class A<T> { class B{} } class C{} } namespace N2 { using W = N1.A; //错误,不能命名泛型类型 using X = N1.A.B; //错误,不能命名泛型类型 using Y = N1.A<int>; //ok,可以命名封闭构造类型 using Z = N1.C; //ok }
20.5.9特性
开放类型不能被用于特性内的任何地方。一个封闭构造类型可以被用作特性的实参,但不能被用作特性名,因为System.Attribute不可能是泛型类声明的基类。
class A:Attribute { public A(Type t){…} } class B<T>: Attribute{} //错误,不能将Attribute用作基类 class List<T> { [A(typeof(T))] T t; //错误,在特性中有开放类型 } class X { [A(typeof(List<int>))] int x; //ok,封闭构造类型 [B<int>] int y; //错误,无效的特性名字 }
以上就是C# 2.0 Specification (泛型三)的内容,更多相关内容请关注PHP中文网(www.php.cn)!

The core concepts of .NET asynchronous programming, LINQ and EFCore are: 1. Asynchronous programming improves application responsiveness through async and await; 2. LINQ simplifies data query through unified syntax; 3. EFCore simplifies database operations through ORM.

The usage methods of symbols in C language cover arithmetic, assignment, conditions, logic, bit operators, etc. Arithmetic operators are used for basic mathematical operations, assignment operators are used for assignment and addition, subtraction, multiplication and division assignment, condition operators are used for different operations according to conditions, logical operators are used for logical operations, bit operators are used for bit-level operations, and special constants are used to represent null pointers, end-of-file markers, and non-numeric values.

In C, the char type is used in strings: 1. Store a single character; 2. Use an array to represent a string and end with a null terminator; 3. Operate through a string operation function; 4. Read or output a string from the keyboard.

In C language, special characters are processed through escape sequences, such as: \n represents line breaks. \t means tab character. Use escape sequences or character constants to represent special characters, such as char c = '\n'. Note that the backslash needs to be escaped twice. Different platforms and compilers may have different escape sequences, please consult the documentation.

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().

A strategy to avoid errors caused by default in C switch statements: use enums instead of constants, limiting the value of the case statement to a valid member of the enum. Use fallthrough in the last case statement to let the program continue to execute the following code. For switch statements without fallthrough, always add a default statement for error handling or provide default behavior.

C#.NET provides powerful tools for concurrent, parallel and multithreaded programming. 1) Use the Thread class to create and manage threads, 2) The Task class provides more advanced abstraction, using thread pools to improve resource utilization, 3) implement parallel computing through Parallel.ForEach, 4) async/await and Task.WhenAll are used to obtain and process data in parallel, 5) avoid deadlocks, race conditions and thread leakage, 6) use thread pools and asynchronous programming to optimize performance.

In C language, char type conversion can be directly converted to another type by: casting: using casting characters. Automatic type conversion: When one type of data can accommodate another type of value, the compiler automatically converts it.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
