I do not understand this Java behavior. I have two classes:
class C1 {
public void m1(double num) {
System.out.println("Inside C1.m1(): " + num);
}
}
class C2 extends C1 {
public void m1(int num) {
System.out.println("Inside C2.m1(): " + num);
}
}
And it is my main:
public class Main {
public static void main(String[] args) {
C1 c = new C2();
c.m1(10);
}
}
And the result was:
Inside C1.m1(): 10.0
When I expected:
Inside C2.m1(): 10
Also when I try to complete the code syntax, I found this:
Where is the other m1 of C2 class?
I also check the bytecode of my Main.class and I saw this:
Compiled from "Main.java"
public class com.company.Main {
public com.company.Main();
Code:
0: aload_0
1: invokespecial #1 // Method java/lang/Object."<init>":()V
4: return
public static void main(java.lang.String[]);
Code:
0: new #2 // class com/company/C2
3: dup
4: invokespecial #3 // Method com/company/C2."<init>":()V
7: astore_1
8: aload_1
9: ldc2_w #4 // double 10.0d
12: invokevirtual #6 // Method com/company/C1.m1:(D)V
15: return
}
The bytecode tell me that it will invoke the C1.m1 (D)V (line 12).
Why the method of C1? I am trying to understand this behavior.
@Override
to the second m1 will stop this from happening IRL :) – Navin 2 days ago