[Ayuda] Comenzando con C++...

Iniciado por Lettro, 8 Diciembre 2012, 23:30 PM

0 Miembros y 1 Visitante están viendo este tema.

naderST

Disculpa no me había fijado últimamente he estado algo atareado. En C++ podrías hacer esto:

Código (cpp) [Seleccionar]


#include <iostream>
#include <sstream>

using namespace std;

int main()
{
    float a;
    stringstream ss("2.55",stringstream::in);
    ss >> a;
    return 0;
}


atof() debería funcionar, pero me imagino que el texto del campo te devuelve un objeto string, estos objetos tienen un método llamado c_str() que te devuelve un string de C el cual puedes utilizar en las funciones de la librería string de C

rir3760

No utilizo C++ + .NET pero, si te interesa, la referencia en linea sobre esa clase es MSDN: Convert Class.

Un saludo
C retains the basic philosophy that programmers know what they are doing; it only requires that they state their intentions explicitly.
--
Kernighan & Ritchie, The C programming language