TP-programmation-orientee-o.../TP01/ExempleErreur.java

18 lines
306 B
Java
Raw Normal View History

2023-06-20 19:02:09 +00:00
/** 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();
}
}