Espacios de nombres
Variantes
Acciones

std::atoi, std::atol, std::atoll

De cppreference.com
< cpp‎ | string‎ | byte
 
 
 
Cadenas de bytes terminadas en nulo
Funciones
Manipulación de caracteres
Conversiones a formatos numéricos
atoiatolatoll
(C++11)
(C++11)(C++11)
(C++11)(C++11)
Manipulación de cadenas
Examinación de cadenas
Manipulación de memoria
Misceláneos
 
Definido en el archivo de encabezado <cstdlib>
int       atoi( const char *str );
long      atol( const char *str )
long long atoll( const char *str );
(desde C++11)
Interpreta un valor entero en una cadena de bytes que apunta str .
Original:
Interprets an integer value in a byte string pointed to by str.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Función descarta los espacios en blanco hasta que primero no está en blanco se encuentra. Luego se toma como caracteres posible para formar una representación válida número entero y los convierte a un valor entero. El valor entero válido consiste de las siguientes partes:
Original:
Function discards any whitespace characters until first non-whitespace character is found. Then it takes as many characters as possible to form a valid integer number representation and converts them to integer value. The valid integer value consists of the following parts:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • (opcional) más o el signo menos
    Original:
    (opcional) plus or minus sign
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • dígitos numéricos
    Original:
    numeric digits
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.

Contenido

[editar] Parámetros

str -
puntero a la cadena terminada en null byte debe ser interpretado
Original:
pointer to the null-terminated byte string to be interpreted
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Valor de retorno

Valor entero correspondiente al contenido de str en caso de éxito. Si el valor convertido cae fuera del rango de tipo de retorno correspondiente, el valor de retorno es indefinido. Si la conversión no se puede realizar, 0 se devuelve .
Original:
Integer value corresponding to the contents of str on success. If the converted value falls out of range of corresponding return type, the return value is undefined. If no conversion can be performed, 0 is returned.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Ejemplo

#include <iostream>
#include <cstdlib>
 
int main()
{
    const char *str1 = "42";
    const char *str2 = "3.14159";
    const char *str3 = "31337 with words";
    const char *str4 = "words and 2";
 
    int num1 = std::atoi(str1);
    int num2 = std::atoi(str2);
    int num3 = std::atoi(str3);
    int num4 = std::atoi(str4);
 
    std::cout << "std::atoi(\"" << str1 << "\") is " << num1 << '\n';
    std::cout << "std::atoi(\"" << str2 << "\") is " << num2 << '\n';
    std::cout << "std::atoi(\"" << str3 << "\") is " << num3 << '\n';
    std::cout << "std::atoi(\"" << str4 << "\") is " << num4 << '\n';
}

Salida:

std::atoi("42") is 42
std::atoi("3.14159") is 3
std::atoi("31337 with words") is 31337
std::atoi("words and 2") is 0

[editar] Ver también

(C++11)(C++11)(C++11)
Convierte una cadena a un entero con signo
(función) [editar]
Convierte una cadena de bytes en un valor entero.
(función) [editar]
Convierte una cadena de bytes en un valor entero sin signo.
(función) [editar]
Documentación de C para atoi, atol, atoll