Java probleme affichage via println
Fermé
Kirjava
-
30 janv. 2009 à 10:44
Marco la baraque Messages postés 996 Date d'inscription vendredi 9 mai 2008 Statut Contributeur Dernière intervention 5 novembre 2009 - 30 janv. 2009 à 13:00
Marco la baraque Messages postés 996 Date d'inscription vendredi 9 mai 2008 Statut Contributeur Dernière intervention 5 novembre 2009 - 30 janv. 2009 à 13:00
A voir également:
- Java probleme affichage via println
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Télécharger jeux java gameloft gratuit - Forum Mobile
- Java décompiler - Télécharger - Langages
1 réponse
Marco la baraque
Messages postés
996
Date d'inscription
vendredi 9 mai 2008
Statut
Contributeur
Dernière intervention
5 novembre 2009
329
30 janv. 2009 à 13:00
30 janv. 2009 à 13:00
Bonjour Kirjava,
Voici la correction :
La méthode main est une méthode statique, ce qui signifie qu'elle va s'exécuter sans avoir besoin d'instancier ta classe.
Autrement dit, si tu n'instancies pas ta classe comme je le fais ici, tes attributs note et nom n'existent pas. De plus, tu essayais d'afficher tmp, qui dans le contexte de la méthode main n'existe pas (la variable tmp n'existe quand dans la méthode toString() que tu as surchargée, elle n'existe pas en dehors).
Cordialement,
Voici la correction :
package hello_world; import java.util.*; public class Hello_World { private List resultats=new ArrayList(); private int note; private String nom; public static void main(String[] args) { Hello_World hw = new Hello_World(5, "mon nom"); System.out.println(hw); } public Hello_World(int note,String nom){ this.nom=nom; this.note=note; } public int getnote(){ return note; } public String toString() { StringBuffer tmp=new StringBuffer(); tmp.append(nom); tmp.append('\t'); tmp.append(String.valueOf(note)); return tmp.toString(); } }
La méthode main est une méthode statique, ce qui signifie qu'elle va s'exécuter sans avoir besoin d'instancier ta classe.
Autrement dit, si tu n'instancies pas ta classe comme je le fais ici, tes attributs note et nom n'existent pas. De plus, tu essayais d'afficher tmp, qui dans le contexte de la méthode main n'existe pas (la variable tmp n'existe quand dans la méthode toString() que tu as surchargée, elle n'existe pas en dehors).
Cordialement,