Bonjour,
Je suis actuellement en première année de DUT Informatique et suis bloqué dans la compilation d'un programme en Java.
En effet j'ai créer et compiler une classe UnPoint sans problème , mais quand je veux compiler la classe UnRectangle qui utilise la classe UnPoint celle-ci refuse et la console m'affiche
Code :
- UnRectangle.java:3: cannot find symbol
- symbol : class UnPoint
- location: class UnRectangle
- UnPoint coin ;
- ^
- UnRectangle.java:22: cannot find symbol
- symbol : class UnPoint
- location: class UnRectangle
- UnRectangle (UnPoint p) { // Constructeur si on donne un point p
- ^
- UnRectangle.java:30: cannot find symbol
- symbol : class UnPoint
- location: class UnRectangle
- UnRectangle (UnPoint p , int l1 , int l2) { // Constructeur
- si on donne l1 , l2 et un point p
- ^
- UnRectangle.java:7: cannot find symbol
- symbol : class UnPoint
- location: class UnRectangle
- coin = new UnPoint () ;
- ^
- [...]
- UnRectangle.java:59: cannot find symbol
- symbol : class UnPoint
- location: class UnRectangle
- coin = new UnPoint () ;
- ^
- 10 errors
|
Je ne comprend pas car j'ai pourtant défini le classe UnPoint.
J'en appelle donc à votre aide et à votre expérience pour m'aider à découvrir mon erreur...
Merci d'avance