泛型学习(1)

本文是.NET高级课程的一部分,详细讲解了泛型的概念、声明、特点、优势以及各种应用,包括泛型方法、泛型类、泛型接口、泛型委托等。此外,还探讨了泛型约束、缓存以及协变和逆变等高级主题,旨在帮助开发者更好地理解和运用泛型,提升代码的性能和安全性。
摘要由CSDN通过智能技术生成

using MyGeneric.Extension;
using System;
using System.Collections.Generic;

namespace MyGeneric
{
class Program
{

    /// <summary>
    /// 高级班高阶语法特训篇
    /// </summary>
    /// <param name="args"></param>
    static void Main(string[] args)
    {
        //1.泛型的引入,
        //2.泛型的声明
        //3.泛型的特点+原理
        //4.泛型的优势 ,核心设计
        //5.泛型方法,泛型类
        //6.泛型接口,泛型委托
        //7.泛型约束,泛型缓存
        //8.协变,逆变  
        try
        {
            Console.WriteLine("欢迎来到.NET高级班VIP课程,今天是Richard老师给大家带来的泛型Generic");
            int iValue = 123;
            string sValue = "456";
            DateTime dtValue = DateTime.Now;
            object oValue = "678";

            //一、泛型的引入,优势
            //1.泛型---泛:宽泛的--不确定的;   型:类型-----不确定的类型
            //2.无处不在的;
            //3.调用普通方法的时候,参数类型在声明的时候就确定了,调用按照类型传递参数即可
            //  a.如果有100个类型----100个方法?--很累
            //  b.有没有能够做一个方法可以能够满足不同类型的需求呢?
            //4.Object类型作为参数---可以传递不同的类型进去;
            //  a.任何子类出现的地方都可以让父类来代替
            //  b.万物皆对象---任何一个类型都是继承自Object

            //5.问题:
            //  a.性能问题--装箱拆箱---在C#语法中,按照声明时决定类型的
            //  b.类型安全问题---后面说

            //6.有没有既性能好,也能够多种类型的方法呢---泛型方法
            //  a.声明--多了尖括号+  占位符T
            //  b.调用--也需要多一个尖括号,尖括号中指定的类型要和传递的参数类型一致
            //  c.如果可以通过参数推导出类型---尖括号可以省略

            //7.泛型方法---做到了性能高---可以一个方法满足不同类型的需求;
            //---又让马儿跑,又让马吃草
            {
                //CommonMethod.ShowInt(iValue);
                //CommonMethod.ShowString(sValue);
                //CommonMethod.ShowDateTime(dtValue); 
                //Console.WriteLine("***************************");
                //CommonMethod.ShowObject(oValue);

                Object类型作为参数---可以传递不同的类型进去; 
                //CommonMethod.ShowObject(iValue);
                //CommonMethod.ShowObject(sValue);
                //CommonMethod.ShowObject(dtValue);

                //Console.WriteLine("***************************");
                //CommonMethod.Show(iValue); //不允许--如果可以通过参数推导出类型---尖括号可以省略
                //CommonMethod.Show(sValue);// 省略类型--语法糖
                //CommonMethod.Show<DateTime>(dtValue);
                //CommonMethod.Show<object>(oValue);
                //性能问题 
                //Monitor.Show();
            }

            //二、泛型的声明--设计思想 
            {
                //1.泛型方法:--在方法名称后面多了一个尖括号,尖括号中有占位符
                //2.延迟声明:声明的时候,只是给一个占位符T,T是什么类型?不知道什么类型---调用的时候,指定你是什么,调用(使用)的时候,必须要确定类型,你说什么就是什么;

                //3.占位符:T---类型参数---类型变量
                //4.类型参数当做方法的参数的时候,明确参数类型
            }

            //三、泛型的特点+原理--在底层如何支持
            //1.在高级语言中,定义的泛型T,在计算机执行的执行的时候,一定要是一个具体的类型;
            //2.在底层如何支持?---在底层看到 生成的结果是:List`1[T]  Dictionary`2[TKey,TValue]
            //3.在底层---生成了带有`1   `2  `3....`4.`5.....
            //4.编译器必须要能够支持泛型---
            //5.CLR 运行时环境也必须要支持泛型
            //6.泛型当然是框架的升级支持的---- 泛型是语法糖---泛型不是语法糖---由框架的升级支持的;
            //7.语法糖:编译器提供的便捷功能--.NETFrameowork2.0时代支持的 
            {
                //Console.WriteLine(typeof(int));
                //Console.WriteLine(typeof(Dictionary<,>));
            }

            //五、泛型的多种应用
            //1.泛型方法----可以一个方法满足不同类型的需求
            //2.泛型接口----可以一个接口满足不同类型的需求---尖括号+占位符
            //3.泛型类------可以一个类型满足不同类型的需求---尖括号+占位符
            //4.泛型委托----可以一个委托满足不同类型的需求
            {
                //{ 
                //    //泛型方法
                //}
                //{
                //    GenericInterfac<string> sgenericInterfac = null;
                //    GenericInterfac<DateTime> dtgenericInterfac = null;
                //} 
                {
                    GenericAbstractClass<string> sGenericClass = null;
                    GenericAbstractClass<DateTime> dtGenericClass = null;
                    GenericAbstractClass<int> iGenericClass = null;
                    //sGenericClass  dtGenericClass  iGenericClass 三者是什么关系?--一毛钱关系都没有
                }
                //{
                //    Genericdelegate<string> sGenericdelegate = null;
                //    Genericdelegate<DateTime> dtGenericdelegate = null;
                // }  
            }

            //六、泛型约束--要有真正的自由--就必须要有约束--开车---交通规则---红绿灯
            //1.Object类型安全问题--就是代码就可能存在隐患,但是编译器检测不到;
            //2.如何避免类型安全问题--泛型--不存在类型安全问题

            //1.基类约束
            //  a.就是把类型参数当做People
            //  b.调用---就可以传递Popple或者People的子类型
            //  c.泛型约束:要么不让你进来,如果让你进来,就一定是没有问题

            //2接口约束:
            //    a.把这个T 当做ISports
            //    b.就只能传递ISports 这个接口或者是实现过这个接口的类
            //    c.就可以增加功能,可以获取新的功能

            //3引用类型约束
            //   a.就只能传递类型进来

            //4.值类型约束
            //   a.就只能传递值类型进来

            //5.无参数构造函数约束
            //  b.必须有一个无参数构造函数才能当做参数传入

            //6.枚举约束
            //   a.必须是一个枚举类型才能传入

            {
                //People people = new People()
                //{
                //    Id = 123,
                //    Name = "闻"
                //};
                //GenericConstraint.ShowObject(people);
                //Chinese chinese = new Chinese()
                //{
                //    Id = 234,
                //    Name = "Richard"
                //};

                //Japanese japanese = new Japanese()
                //{
                //    Id = 345,
                //    Name = "苍老师"
                //};

                //{
                //    //GenericConstraint.ShowObject(chinese); 
                //    传递IValue呢?
                //    //GenericConstraint.ShowObject(iValue);//如果有问题,正确的玩法应该是不让你正常传递;
                //}
                基类约束
                //{
                //    GenericConstraint.ShowBase<People>(people);
                //    GenericConstraint.ShowBase<Chinese>(chinese);
                //    // GenericConstraint.ShowBase<Japanese>(japanese);//约定了必须是有一个People才能进来
                //}

                接口约束--
                //{
                //    //GenericConstraint.ShowInterface<People>(people);
                //    GenericConstraint.ShowInterface<Chinese>(chinese);
                //    GenericConstraint.ShowInterface<Japanese>(japanese);
                //}

                引用类型约束
                //{
                //    GenericConstraint.ShowClass<People>(people);
                //    GenericConstraint.ShowClass<Chinese>(chinese);
                //    GenericConstraint.ShowClass<Japanese>(japanese);
                //    //GenericConstraint.ShowClass<int>(iValue); //因为Int 是结构--值类型
                //}

                值类型约束
                //{
                //    //GenericConstraint.ShowStruct<People>(people); //应用类型--不行
                //    //GenericConstraint.ShowStruct<Chinese>(chinese);//应用类型--不行
                //    //GenericConstraint.ShowStruct<Japanese>(japanese);//应用类型--不行
                //    GenericConstraint.ShowStruct<int>(iValue); //因为Int  是Struct
                //    GenericConstraint.ShowStruct<DateTime>(dtValue); //因为DateTime  是Struct
                //}

                无参数构造函数约束
                //{
                //    //GenericConstraint.ShowNew<People>(people);
                //}

                还有吗?  枚举约束
                //{
                //    //GenericConstraint.ShowEnum<People>(people);
                //    GenericConstraint.ShowEnum<Enum>(UserType.Normal);
                //}

                //{
                //    GenericConstraint.ShowParent<Chinese, People>(chinese, people);
                //    //GenericConstraint.ShowParent<People, Chinese>(people, chinese);
                //} 
            }

            //七、泛型缓存-泛型类
            //应用:在后面 手写ORM的是时候会用到;
            {
                //GenericCacheTest.Show();
            }

            //八、泛型的协变/逆变 是一种高级约束,
            //是为了规避  1.把子类做参数,却把父类当参数传入;
            //            2.把子类做返回值,却返回的时候,返回了一个父类
            //听懂了80%以上  刷个1   60% 刷个2;  
            {
                ContravariantCovariance.Show();
            }

            {
                ICustomerListOut<Animal> customerListOut = new CustomerListOut<Animal>();
                ICustomerListOut<Animal> customerListOut1 = new CustomerListOut<Cat>();
                //左边是Animal  右边是:Cat
                //customerListOut1.Show(new Animal());
                //customerListOut1.Show(new Cat());
                customerListOut1.Get();
            }

            Console.Read();
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
    }
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值