✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Soit les classes A et B :
public class A {
public void m(A param1) { }
}
public class B extends A {
public void m(B param1) { }
public static void main(String[] args) {
A a1 = new B();
A a2 = new B();
a1.m(a2);
}
}
À quelle classe appartient la méthode m
appelée dans la méthode main
?...
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!