Covariance and contravariance of interfaces

Source: Internet
Author: User

 classAnimal { Public stringName;}//base class    classDog:animal {}//Derived Classes    Interfaceimyif< outT>//covariance keyword out, generic interface + interface covariant{T getfirst ();//Constraint Method    }    classSimplereturn<t>: imyif<t>//generic types that implement generic interfaces    {         Publict[] Items =Newt[2];//initializing an array of objects         PublicT GetFirst () {returnitems[0]; }//returns the first object of an array of objects    }    classProgram {Static voidDoSomething (imyif<animal> Returner)//static method, the method parameter is the interface of the parameter constraint to the animal object{Console.WriteLine (returner). GetFirst ().        Name); }        Static voidMain () {Simplereturn<Dog> Dogreturner =NewSimplereturn<dog> ();//instantiating an object constrained to a dog typedogreturner.items[0] =NewDog () {name="Avonlea"}//Assign Valueimyif<animal> Animalreturner = Dogreturner;//Associationbecomes an interface constrained to a animal objectDoSomething (Dogreturner);//executing a static method        }    }

Covariance and contravariance of interfaces

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.