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
| 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()); //%3.1 --> _taille = 3
///////////////////////////////////////////////////
//Ajout 27/04/2007 (debut)
char temp_char[256];
sprintf(temp_char, "%f", nombre);
CChaine temp_chaine = temp_char;
pos = temp_chaine.cherche(".", i);
if(pos > _taille)
_taille = pos; //Si on a 12345.123, %3.1 donne 12345.1
_taille++; //il faut aussi un caractère pour le "."
//Ajout 27/04/2007 (fin)
///////////////////////////////////////////////////
*_chaine = new char[_taille+1];
sprintf(*_chaine, format.getChaine(), nombre);
}
else
{
_taille = 0;
*_chaine = new char[1];
_chaine[0] = '\0';
}
} |
Partager