當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ atoll()用法及代碼示例


C++ atoll() 函數

atoll() 函數是 cstdlib 頭文件的庫函數。它用於將給定的字符串值轉換為整數值。它接受一個包含整數(整數)數的字符串並返回其 long long long 整數值。

atoll() 函數的語法:

C++11:

    long long int atoll (const char * str);

參數:

  • str– 表示包含整數(整數)數的字符串。

返回值:

這個函數的返回類型是long long int,它返回 long long long 整數轉換值。

例:

    Input:
    str = "123456789012345";

    Function call:
    atoll(str);

    Output:
    123456789012345

C++代碼演示atoll()函數的例子

// C++ code to demonstrate the example of
// atoll() function

#include <iostream>
#include <cstdlib>
#include <string.h>
using namespace std;

// main() section
int main()
{
    char str[50];

    strcpy(str, "123456789");
    cout << "atoll(\"" << str << "\"):" << atoll(str) << endl;

    strcpy(str, "-123456789");
    cout << "atoll(\"" << str << "\"):" << atoll(str) << endl;

    strcpy(str, "0");
    cout << "atoll(\"" << str << "\"):" << atoll(str) << endl;

    strcpy(str, "9876543120");
    cout << "atoll(\"" << str << "\"):" << atoll(str) << endl;

    strcpy(str, "-9876543120");
    cout << "atoll(\"" << str << "\"):" << atoll(str) << endl;

    strcpy(str, "123456789012345");
    cout << "atoll(\"" << str << "\"):" << atoll(str) << endl;

    return 0;
}

輸出

atoll("123456789"):123456789
atoll("-123456789"):-123456789
atoll("0"):0
atoll("9876543120"):9876543120
atoll("-9876543120"):-9876543120
atoll("123456789012345"):123456789012345

參考:C++ atoll() 函數



相關用法


注:本文由純淨天空篩選整理自 atoll() Function with Example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。