1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
public class Jm {
private String nom;
private String prenom;
private String adresse;
private int age;
private String sexe;
public Jm(String nom,String prenom){
this.nom=nom;
this.prenom=prenom;
}
public String getNom(){
return nom;
}
public void setNom(String nom){
this.nom=nom;
}
public void setPrenom(String prenom){
this.prenom=prenom;
}
public String toString(){
String infos;
infos=nom+prenom;
return infos;}
}
public class TestJm{
public static void main(String args[]){
Jm a= new Jm("JeanMarc","Caspar");
System.out.println(a);
a.setNom("grosbill");
a.setPrenom("test");
System.out.println(a);
}
} |