✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quel type de classe interne reconnaît-on dans le code ci-dessous:
public class ClasseExterne { ClasseInterne c = new ClasseInterne () { public void afficher(){ System.out.println("Qui suis-je ?" ) ; } }; public static void main(String args[]) { c.afficher(); }}