• C#4.0泛型中的out使用


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                B<string> b = new B<string>();
                b.TValue = "I'm B";
                Console.WriteLine(b.TValue);
                A<string> a = b;
                Console.WriteLine(a.TValue);
                A<object> a2 = b;
                Console.WriteLine(a2.TValue);

            }
        }

        interface A<out T>
        {
            T TValue
            {
                get;
            }
        }

        class B<T> : A<T>
        {
             public T TValue
            {
                get;
                set;
            }

        }


     


    }

  • 相关阅读:
    关于vue中如何实现排到他思想
    js 文件下载
    js文件上传
    webpack学习笔记
    this总结
    React中props与state
    js事件总结
    js深拷贝与浅拷贝
    JS设计模式之观察者模式
    ES5与ES6的继承
  • 原文地址:https://www.cnblogs.com/kiminozo/p/1492171.html
Copyright © 2020-2023  润新知