在向大家详细介绍C#实现泛型类之前,首先让大家了解下使用泛型集合,然后全面介绍C#实现泛型类。
库车网站制作公司哪家好,找成都创新互联公司!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设公司等网站项目制作,到程序开发,运营维护。成都创新互联公司从2013年创立到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联公司。
使用泛型集合
有些人问我"面向对象编程(OOP)的承诺在哪里?",我的回答是应该从两个方面来看OOP:你所使用的OOP和你创建的OOP。如果我们简单地看一下如果没有如例如Microsoft的.NET,Borland的VCL,以及所有的第三方组件这样的OO框架,那么很多高级的应用程序几乎就无法创建。所以,我们可以说OOP已经实现了它的承诺。不错,生产好的OOP代码是困难的并且可能是***挫败性的;但是记住,你不必须一定要通过OOP来实现你的目标。因此,下面首先让我们看一下泛型的使用。
当你用Visual Studio或C# Express等快速开发工具创建工程时,你会看到对于System.Collections.Generic命名空间的参考引用。在这个命名空间中,存在若干泛型数据结构-它们都支持类型化的集合,散列,队列,栈,字典以及链表等。为了使用这些强有力的数据结构,你所要做的仅是提供数据类型。
显示出我们定义一个强类型集合的Customer对象是很容易的:
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Generics{
- class Program{
- static void Main(string[] args){
- List
customers = new List (); - customers.Add(new Customer("Motown-Jobs"));
- customers.Add(new Customer("Fatman's"));
- foreach (Customer c in customers)
- Console.WriteLine(c.CustomerName);
- Console.ReadLine();
- }
- }
- public class Customer{
- private string customerName = "";
- public string CustomerName{
- get { return customerName; }
- set { customerName = value; }
- }
- public Customer(string customerName){
- this.customerName = customerName;
- }
- }
- }
注意,我们有一个强类型集合-List
C#实现泛型类
一种合理的实现某种新功能的方法是在原有的事物上进一步构建。我们已经了解强类型集合,并知道一种不错的用来构建泛型类的技术是使用一个特定类并删除数据类型。也就是说,让我们定义一个强类型集合CustomerList,并且来看一下它要把什么东西转化成一个泛型类。
定义了一个类CustomerList:
- using System;
- using System.Collections;
- using System.Text;
- namespace Generics{
- public class CustomerList : CollectionBase{
- public CustomerList() { }
- public Customer this[int index]{
- get { return (Customer)List[index]; }
- set { List[index] = value; }
- }
- public int Add(Customer value)
- {return List.Add(value);}
- }
- }
【编辑推荐】
分享文章:C#实现泛型类简单分析
网站链接:http://www.shufengxianlan.com/qtweb/news12/137162.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联