✅ 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() { }
}
public class B extends A {
public void m() { }
public static void main(String[] args) {
A a = new B();
a.m();
}
}
À quelle classe appartient la méthode m
appelée dans la méthode main
?...
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!