TP-programmation-orientee-o.../TP01/ExempleErreur.java
2023-06-20 21:02:09 +02:00

18 lines
306 B
Java

/** Une erreur à la compilation !
* Pourquoi ?
* @author Xavier Crégut
* @version 1.3
*/
public class ExempleErreur {
/** Méthode principale */
public static void main(String[] args) {
Point p1 = new Point(0, 0);
p1.setX(1);
p1.setY(2);
p1.afficher();
System.out.println();
}
}