Affichage d'une chaîne en Java
Fermé
masterx_goldman
Messages postés
75
Date d'inscription
mercredi 6 février 2008
Statut
Membre
Dernière intervention
28 juillet 2009
-
12 mars 2008 à 22:22
mamiemando Messages postés 33446 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 20 décembre 2024 - 12 mars 2008 à 22:50
mamiemando Messages postés 33446 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 20 décembre 2024 - 12 mars 2008 à 22:50
A voir également:
- Affichage d'une chaîne en Java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Chaine tnt gratuite sur mobile - Guide
- Java apk - Télécharger - Langages
- Nouvelle chaîne tnt gratuite 2024 - Accueil - TV & Vidéo
3 réponses
mamiemando
Messages postés
33446
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
20 décembre 2024
7 811
12 mars 2008 à 22:23
12 mars 2008 à 22:23
System.out.println(ma_chaine); non ?
Bonne chance
Bonne chance
masterx_goldman
Messages postés
75
Date d'inscription
mercredi 6 février 2008
Statut
Membre
Dernière intervention
28 juillet 2009
8
12 mars 2008 à 22:31
12 mars 2008 à 22:31
voici la portion de code:
string c=getNom(this)
public String getNom(Object o)
{
Class c = o.getClass();
return c.getName();
}
System.out.println(c);
l'erreur:
cannot make static reference to the non static field c
merci pour l'aide.
string c=getNom(this)
public String getNom(Object o)
{
Class c = o.getClass();
return c.getName();
}
System.out.println(c);
l'erreur:
cannot make static reference to the non static field c
merci pour l'aide.
mamiemando
Messages postés
33446
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
20 décembre 2024
7 811
12 mars 2008 à 22:50
12 mars 2008 à 22:50
Il faut que ton objet c soit d'un type qui implémente une méthode toString. Si elle n'existe pas déjà il faut la créer.
Bonne chance
Bonne chance