Java covariant return type

Source: Internet
Author: User

Today I see a word: "Return covariant type When overriding method is supported."

So what's the covariant type? Looking for information on the Internet, generally understand.

Java 5.0 adds support for covariant return types, that is, when a subclass overrides (that is, overriding) a base class method, the returned type can be a subclass of the base class method return type. The covariant return type allows a more specific type to be returned.
The sample program is as follows:

The code is as follows:


Import java.io.bytearrayinputstream;import Java.io.inputstream;class base{    //subclass derive will override this method, Set the return type to InputStream of the subclass public   InputStream GetInput ()   {    return system.in;   }} Public  class Derive extends base{    @Override public    bytearrayinputstream getinput ()    {        return New Bytearrayinputstream (new byte[1024]);    public static void Main (string[] args)    {        Derive d=new Derive ();        System.out.println (D.getinput (). GetClass ());}    } /* Program output: Class java.io.bytearrayinputstream*/

  


Java covariant return type

Related Article

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.