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 58 59 60 61 62 63 64 65
| CChaine::CChaine(double nombre, const CChaine& format)
{
short int pos = format.cherche("%");
CChaine taille;
_chaine = new char*;
if (pos != -1)
{
for (unsigned short int i = pos + 1 ;
i < (unsigned short int)format.getLongueur() && format(i, 1).estEntier() ; i++)
{
if (format(i, 1).estEntier())
{
taille += format(i, 1);
}
}
_taille = atoi(taille.getChaine());
*_chaine = new char[_taille+1];
sprintf(*_chaine, format.getChaine(), nombre);
}
else
{
_taille = 0;
*_chaine = new char[1];
_chaine[0] = '\0';
}
}
//------------------------------------------------------------------------
CChaine::~CChaine()
{
if (_taille != 0)
delete[] (*_chaine);
else
delete *_chaine;
delete _chaine;
}
//------------------------------------------------------------------------
CChaine& CChaine::operator=(const CChaine& cchaine)
{
if (this != &cchaine)
{
if ( _taille > 0)
delete[] (*_chaine);
else
delete *_chaine;
_taille = cchaine.getLongueur();
*_chaine = new char[_taille + 1];
sprintf(*_chaine,"%s", cchaine.getChaine());
}
return *this;
} |
Partager