当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ atoi()用法及代码示例


C++ atoi() 函数

atoi() 函数是 cstdlib 头文件的库函数。它用于将给定的字符串值转换为整数值。它接受一个包含整数(整数)数的字符串并返回其整数值。

atoi() 函数的语法:

C++11:

    int atoi (const char * str);

参数:

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

返回值:

这个函数的返回类型是int,它返回整数转换值。

例:

    Input:
    str = "123";

    Function call:
    atoi(str);

    Output:
    123

C++代码演示atoi()函数的例子

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

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

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

    strcpy(str, "123");
    cout << "atoi(\"" << str << "\"):" << atoi(str) << endl;

    strcpy(str, "-123");
    cout << "atoi(\"" << str << "\"):" << atoi(str) << endl;

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

    strcpy(str, "1234567");
    cout << "atoi(\"" << str << "\"):" << atoi(str) << endl;

    strcpy(str, "12345678");
    cout << "atoi(\"" << str << "\"):" << atoi(str) << endl;

    strcpy(str, "-12345678");
    cout << "atoi(\"" << str << "\"):" << atoi(str) << endl;

    return 0;
}

输出

atoi("123"):123
atoi("-123"):-123
atoi("0"):0
atoi("1234567"):1234567
atoi("12345678"):12345678
atoi("-12345678"):-12345678

参考:C++ atoi() 函数



相关用法


注:本文由纯净天空筛选整理自 atoi() Function with Example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。