bonjour,
à quoi ça sert "this->age = age"
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 class personne{ private : int age; char sexe; float taille; public : personne(int,char,float); }; personne::personne(int age, char sexe, float taille){ this->age = age; this->sexe = sexe; this->taille = taille; }
mercii
Partager