温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C#中的5个泛型类型是什么

发布时间:2021-11-24 14:50:41 来源:亿速云 阅读:148 作者:小新 栏目:编程语言

这篇文章主要介绍C#中的5个泛型类型是什么,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

什么是泛型(广泛意义上的“泛型”)-->在特定语言(C#)里的泛型-->C#中的5个泛型类型

1、什么是泛型?

2、C#中提供了五种泛型(C#中的泛型)

3、C#中的泛型类(Generic Classes )

4、泛型方法Generic Methods 

5、泛型结构Generic Structs

6、泛型委托Generic Delegates 

7、泛型接口Generic Interfaces 

C#中的5个泛型类型是什么

=================

1、什么是泛型

泛型是通过一种抽象的方式达到方法的重用。“方法的重用”是泛型的目的,其手段是进行抽象,即将“类型”参数化。

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#中提供了五种泛型

泛型可以让开发人员编写“类型参数化的代码(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 )

创建并实例化泛型类的过程:

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.

C#中的5个泛型类型是什么

3.1、Declaring a Generic Class (声明一个泛型类)

Declaring a simple generic class is much like declaring a regular class, with the following differences: 

1、在类名之后使用“<>”

2、在<>中放置类型参数(type parameters),中间以“,”分隔

3、在泛型类内部使用类型参数(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. 

C#中的5个泛型类型是什么

泛型类与普通类的区别就是“<>”

There is no special keyword that flags a generic class declaration. Instead, the presence of the type parameter list, demarcated(定…的界线,区分) with angle brackets, distinguishes a generic class declaration from a regular class declaration.

3.2、Creating a Constructed Type (创建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.

C#中的5个泛型类型是什么

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.

C#中的5个泛型类型是什么

3.3、Creating Variables and Instances 

A constructed class type is used just like a regular type in creating references and instances.

C#中的5个泛型类型是什么

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

C#中的5个泛型类型是什么

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. 

  1.  Each type parameter that has constraints has its own where clause. 

  2.  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:

C#中的5个泛型类型是什么

The important points about where clauses are the following: (多个where clause,注意是复数形式)

  1.  They’re listed after the closing angle bracket of the type parameter list. (where clause的位置)

  2.  They’re not separated by commas or any other token. (是否有分隔符)

  3.  They can be listed in any order. (顺序不重要)

 The token where is a contextual keyword, so you can use it in other contexts. 

C#中的5个泛型类型是什么

3.5.2、Constraint Types and Order

There are five types of constraints.

C#中的5个泛型类型是什么

The where clauses can be listed in any order. The constraints in a where clause, however, must be placed in a particular order. 

  1.  There can be at most one primary constraint, and if there is one, it must be listed first. 

  2.  There can be any number of InterfaceName constraints. 

  3.  If the constructor constraint is present, it must be listed last.

C#中的5个泛型类型是什么

C#中的5个泛型类型是什么

以上是“C#中的5个泛型类型是什么”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI