-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemplacant.java
57 lines (42 loc) · 1.31 KB
/
Remplacant.java
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
48
49
50
51
52
53
54
55
56
57
/**
* Un remplacant peut devenir un joueur
* Sa capacite ne sera pas prise en compte
* et donc obtenir un salaire plus eleve
*/
public class Remplacant extends Joueur{
// attribut
public static double salaireDefaut = 1;
protected final static double COEFFSALAIRECAPACITEREM = 1.;
private final static int MINR = 30;//temporaire
private final static int MAXR = 65;
//méthode
public Remplacant(int capacite, int age) {
super(capacite, age);
this.salaire = salaireDefaut;
}
/**
* constructeur par copie
* @param r le remplacant a copier
*/
public Remplacant(Remplacant r) {
this.capacite = r.capacite;
this.salaire = r.salaire;
this.age = r.age;
this.contrat = contratDefaut;
}
/**
* constructeur par defaut
*/
public Remplacant()
{
super(Outil.aleatoireIntEntre(MINR, MAXR), Outil.aleatoireIntEntre(ageDefaut, ageDefaut + 3));
this.salaire = this.capacite * COEFFSALAIRECAPACITEREM;
}
public void sePresenter(){
System.out.println(this.toString());
}
@Override
public String toString() {
return "Remplacant [nom=" + nom + ", age=" + age + ", capacite=" + capacite + ", contrat=" + contrat + ", salaire=" + salaire + "]\n";
}
}