這篇文章主要介紹C#中的5個泛型類型是什么,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)致力于互聯(lián)網(wǎng)網(wǎng)站建設(shè)與網(wǎng)站營銷,提供成都做網(wǎng)站、成都網(wǎng)站設(shè)計、網(wǎng)站開發(fā)、seo優(yōu)化、網(wǎng)站排名、互聯(lián)網(wǎng)營銷、重慶小程序開發(fā)、公眾號商城、等建站開發(fā),創(chuàng)新互聯(lián)網(wǎng)站建設(shè)策劃專家,為不同類型的客戶提供良好的互聯(lián)網(wǎng)應(yīng)用定制解決方案,幫助客戶在新的全球化互聯(lián)網(wǎng)環(huán)境中保持優(yōu)勢。什么是泛型(廣泛意義上的“泛型”)-->在特定語言(C#)里的泛型-->C#中的5個泛型類型
1、什么是泛型?
2、C#中提供了五種泛型(C#中的泛型)
3、C#中的泛型類(Generic Classes )
4、泛型方法Generic Methods
5、泛型結(jié)構(gòu)Generic Structs
6、泛型委托Generic Delegates
7、泛型接口Generic Interfaces
=================
1、什么是泛型
泛型是通過一種抽象的方式達(dá)到方法的重用?!胺椒ǖ闹赜谩笔欠盒偷哪康模涫侄问沁M(jìn)行抽象,即將“類型”參數(shù)化。
There are times, when a class would be more useful if you could “distill” or “refactor” out its actions and apply them not just to the data types for which they are coded, but for other types as well.
Generics allow you to do just that. You can refactor your code and add an additional layer of abstraction so that, for certain kinds of code, the data types are not hard-coded. This is particularly designed for cases in which there are multiple sections of code performing the same instructions, but on different data types.
=================
2、C#中提供了五種泛型
泛型可以讓開發(fā)人員編寫“類型參數(shù)化的代碼(type-parameterized code)”,它提供了一個容器(placeholders for types)用于存放類型。
The generics feature offers a more elegant way of using a set of code with more than one type. Generics allow you to declare type-parameterized code, which you can instantiate with different types. This means you can write the code with “placeholders for types” and then supply the actual types when you create an instance of the class.
C#提供了5種類型的泛型:classes, structs, interfaces, delegates和 methods.
C# provides five kinds of generics: classes, structs, interfaces, delegates, and methods. Notice that the first four are types, and methods are members.
=================
3、泛型類(Generic Classes )
創(chuàng)建并實例化泛型類的過程:
Generic Class-->Constructed Type-->instances of the constructed type
As you know, there are two steps for creating and using your own regular, nongeneric classes: declaring the class and creating instances of the class. However, generic classes are not actual classes, but templates for classes—so you must first construct actual class types from them. You can then create references and instances from these constructed class types.
1. Declare a class, using placeholders for some of the types.
2. Provide actual types to substitute in for the placeholders. This gives you an actual class definition, with all the “blanks” filled in. This is called a constructed type.
3. Create instances of the constructed type.
3.1、Declaring a Generic Class (聲明一個泛型類)
Declaring a simple generic class is much like declaring a regular class, with the following differences:
1、在類名之后使用“<>”
2、在<>中放置類型參數(shù)(type parameters),中間以“,”分隔
3、在泛型類內(nèi)部使用類型參數(shù)(type parameters)
1. You place a matching set of angle brackets after the class name.
2. Between the angle brackets, you place a comma-separated list of the placeholder strings that represent the types, to be supplied on demand. These are called type parameters.
3. You use the type parameters throughout the body of the declaration of the generic class to represent the types that should be substituted in.
泛型類與普通類的區(qū)別就是“<>”
There is no special keyword that flags a generic class declaration. Instead, the presence of the type parameter list, demarcated(定…的界線,區(qū)分) with angle brackets, distinguishes a generic class declaration from a regular class declaration.
3.2、Creating a Constructed Type (創(chuàng)建Constructed Type)
Once you have declared the generic type, you need to tell the compiler what actual types should be substituted for the placeholders (the type parameters). The compiler takes those actual types and creates a constructed type, which is a template from which it creates actual class objects.
type arguments-->type parameters
The real types being substituted for the type parameters are called type arguments.
The compiler takes the type arguments and substitutes them for their corresponding type parameters throughout the body of the generic class, producing the constructed type—from which actual class instances are created.
3.3、Creating Variables and Instances
A constructed class type is used just like a regular type in creating references and instances.
Many different class types can be constructed from the same generic class. Each one is a separate class type, just as if it had its own separate nongeneric class declaration.
3.4、Comparing the Generic and Nongeneric Stack
3.5、Constraints on Type Parameters
Since the generic stack doesn’t know the type of the items it will be storing, it can’t know what members these types implement.
All C# objects, however, are ultimately derived from class object, so the one thing the stack can be sure of about the items it’s storing is that they implement the members of class object. These include methods ToString, Equals, and GetType. Other than that, it can’t know what members are available.
To make generics more useful, you need to be able to supply additional information to the compiler about what kinds of types are acceptable as arguments. These additional bits of information are called constraints. Only types that meet the constraints can be substituted for the given type parameter to produce constructed types.
3.5.1、Where Clauses
Constraints are listed as where clauses.
Each type parameter that has constraints has its own where clause.
If a parameter has multiple constraints, they are listed in the where clause, separated by commas.
The syntax of a where clause is the following:
The important points about where clauses are the following: (多個where clause,注意是復(fù)數(shù)形式)
They’re listed after the closing angle bracket of the type parameter list. (where clause的位置)
They’re not separated by commas or any other token. (是否有分隔符)
They can be listed in any order. (順序不重要)
The token where is a contextual keyword, so you can use it in other contexts.
3.5.2、Constraint Types and Order
There are five types of constraints.
The where clauses can be listed in any order. The constraints in a where clause, however, must be placed in a particular order.
There can be at most one primary constraint, and if there is one, it must be listed first.
There can be any number of InterfaceName constraints.
If the constructor constraint is present, it must be listed last.
以上是“C#中的5個泛型類型是什么”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。