Conversions between parent and child classes

Source: Internet
Author: User

Conclusion:

1. Parent class (Basic Class) Rotor class (extension Class), error

2. Subclass (Extension Class) to parent class (base class), successful

The experiment is as follows:

Parent class (base class)

 Public classPerson {PrivateString name; PrivateString Doc;  PublicString GetName () {returnname; }     Public voidsetName (String name) { This. Name =name; }     PublicString Getdoc () {returnDoc; }     Public voidSetdoc (String doc) { This. doc =Doc; }}
View Code

Subclass (Extension Class)

 Public class extends Person {}
View Code

Implementation class:

@Test//failed     Public voidtest1 () {person P=NewPerson (); P.setname ("Name"); Cnperson CP=(Cnperson) p;    System.out.println (Cp.getname ()); } @Test//Success     Public voidtest2 () {Cnperson CP=NewCnperson (); Cp.setname ("Name"); Person P=(person) CP;    System.out.println (P.getname ()); }
View Code

Conversions between parent and child 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.