Java Internal classes

Source: Internet
Author: User

/*** Created by xfyou on 2016/11/3. * Java Inner class demo * Inner classes can completely enter an invisible or unusable state-this will be true for ANYONE. So we can easily hide implementation details*/ public classParcel3 {/*** Private Inner class*/    Private classPcontentsextendsContents {Private inti = 11; @Override public intvalue () {returni; }    }    /*** Protected Inner class*/    protected classPdestinationImplementsDestination {PrivateString lable; Privatepdestination (String whereto) { this. lable =whereto; } @Override publicString Readlabel () {returnlable; }    }     publicDestination dest (String s) {return Newpdestination (s); }     publicContents cont () {return Newpcontents (); }}Abstract classContents {Abstract  public intvalue ();}InterfaceDestination {String Readlabel ();}classTest { public Static voidmain (string[] Args) {Parcel3 p=NewParcel3 (); Contents C=P.cont (); Destination D= P.dest ("tanzania"); //Illegal--can ' t access private class://! Parcel3.pcontents C = p.new pcontents ();    }}

Java Internal classes

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.