1 / 1

Java Polymorphism Code Correction and Execution

Correcting and running Java code demonstrating polymorphism and inheritance.

Télécharger la présentation

Java Polymorphism Code Correction and Execution

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 1 多态 改错,写出执行结果 class A{ int i , j; A(int a,int b){ i=a;j=b; } int add(){return i+j;} } class B extends A{ B(int a , int b){ super( a,b); } int add(){ return i*j;} } class C extends B { C(int a , int b){ super( a,b); } int add(){ return i-j; } } class hello2 { public static void main(String args[] ) { A a = new A(1,2); B b =new B(5 , 3); C c = new C(6,2); a=b; b=c;c=(C ) a; System.out.println( b.add() ) ; }

More Related