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
| class Prix {
private double valeur = 0d;
public Prix(double val) {
valeur = val;
}
public double getPrix() { return prix;}
public void setPrix(double val) { valeur = val;}
}
class Produit{
private String nom;
private String etat;
private Prix prix;
public Produit(String nom, String etat, double prix) {
this.nom = nom;
this.etat = etat;
this.prix = new Prix(prix);
}
// ou encore
public Produit(String nom, String etat, Prix prix) {
this.nom = nom;
this.etat = etat;
this.prix = prix;
}
} |