4.4 polymorphic

Source: Internet
Author: User

 

There is nothing to note about polymorphism. The keyword worth noting is instanceof. For the explanation, "it can determine whether an object is an instance or a subclass of a class"

The Code is as follows:

Package D10; public class animaltest {public static void main (string [] ARGs ){
// The method stub automatically generated by todo
Animal a1 = new CAT (); // The new object is referenced by animal Class A1.
Animal a2 = new dog ();
Animalshout (A1 );
// Animalshout (A2 );

}
Public static void animalshout (animal SH) {// Implementation Method of Parameter validation using Polymorphism
Sh. Shout ();
Cat cat = (CAT) Sh;
Cat. Sleep ();
}
}/* Partition ------ split */package D10; Class cat implements animal {
Public void shout () {// What if public is removed?
System. Out. println ("meow ~ ");
}
Public void sleep () {// What if public is removed?
System. Out. println ("sleep ~ ");
}
}/* Partition ------ split */package D10; Class dog implements animal {
Public void shout (){
System. Out. println ("Wang ~ ");
}
}/* Partition ------ split */package D10; interface animal {
Void shout ();
} Implementation:

 

Package D10; public class animaltest {public static void main (string [] ARGs ){
// The method stub automatically generated by todo
Animal a1 = new CAT (); // The new object is referenced by animal Class A1.
Animal a2 = new dog ();
Animalshout (A1 );
Animalshout (A2 );

}
Public static void animalshout (animal SH) {// Implementation Method of Parameter validation using Polymorphism
If (SH instanceof cat ){
Sh. Shout ();
Cat cat = (CAT) Sh;
Cat. Sleep ();
} Else {
Sh. Shout ();
}

}
}

 

 

 

4.4 polymorphic

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.