◐ Shell
clean mode source ↗

std::atoi, std::atol, std::atoll - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<cstdlib>

int atoi( const char *str );

long atol( const char *str )

long long atoll( const char *str );

(dal C++11)

Interpreta un valore intero in una stringa di byte puntato da 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.

Funzione scarta eventuali spazi bianchi fino al primo carattere non-spazio si trova. Poi ci vuole come numero possibile di caratteri in modo da formare una rappresentazione valida numero intero e li converte in valore intero. Il valore intero valido consiste delle seguenti parti:

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.

  • (opzionale) più o segno meno

    Original:

    (opzionale) 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.

  • cifre numeriche

    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.

Parametri

str -

puntatore alla stringa con terminazione null byte da interpretare

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.

Valore di ritorno

Valore intero che corrisponde al contenuto di str in caso di successo. Se il valore convertito cade fuori dalla portata del tipo di ritorno corrispondente, il valore restituito non è definito. Se la conversione non può essere eseguita, viene restituito 0.

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.

Esempio

#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';
}

Output:

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

Vedi anche

(C++11)
(C++11)
(C++11)

converte una stringa in un intero con segno
(funzione) [modifica]

converte una stringa di byte in un valore intero

Original:

converts a byte string to an integer value

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]

converte una stringa di byte in un valore intero senza segno

Original:

converts a byte string to an unsigned integer value

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]

C documentation for atoi, atol, atoll