C++

Fermé
TCHILDA - 1 déc. 2008 à 00:54
Char Snipeur Messages postés 9813 Date d'inscription vendredi 23 avril 2004 Statut Contributeur Dernière intervention 3 octobre 2023 - 1 déc. 2008 à 10:18
Bonjour,
VOILA J AI UNE CLASSE
classe point {
protected :
int abs;
int ord;
public:
point ();//constructeur par defaut
point(int a ,int b);
}
cpmment coder le constructeur par defaut dans ce cas (fichier.cpp)
merci

1 réponse

Char Snipeur Messages postés 9813 Date d'inscription vendredi 23 avril 2004 Statut Contributeur Dernière intervention 3 octobre 2023 1 298
1 déc. 2008 à 10:18
point::point(){...}
0