C++ atol() 函数
atol() 函数是 cstdlib 头文件的库函数。它用于将给定的字符串值转换为整数值。它接受一个包含整数(整数)数的字符串并返回其长整数值。
atol() 函数的语法:
C++11:
long int atol (const char * str);
参数:
str
– 表示包含整数(整数)数的字符串。
返回值:
这个函数的返回类型是long int
,它返回长整数转换值。
例:
Input: str = "123"; Function call: atol(str); Output: 123
C++代码演示atol()函数的例子
// C++ code to demonstrate the example of
// atol() function
#include <iostream>
#include <cstdlib>
#include <string.h>
using namespace std;
// main() section
int main()
{
char str[50];
strcpy(str, "123");
cout << "atol(\"" << str << "\"):" << atol(str) << endl;
strcpy(str, "-123");
cout << "atol(\"" << str << "\"):" << atol(str) << endl;
strcpy(str, "0");
cout << "atol(\"" << str << "\"):" << atol(str) << endl;
strcpy(str, "1234567");
cout << "atol(\"" << str << "\"):" << atol(str) << endl;
strcpy(str, "12345678");
cout << "atol(\"" << str << "\"):" << atol(str) << endl;
strcpy(str, "-12345678");
cout << "atol(\"" << str << "\"):" << atol(str) << endl;
return 0;
}
输出
atol("123"):123 atol("-123"):-123 atol("0"):0 atol("1234567"):1234567 atol("12345678"):12345678 atol("-12345678"):-12345678
参考:C++ atol() 函数
相关用法
- C++ atoll()用法及代码示例
- C++ atof()用法及代码示例
- C++ atoi()用法及代码示例
- C++ atexit()用法及代码示例
- C++ complex atanh()用法及代码示例
- C++ atan()用法及代码示例
- C++ at_quick_exit()用法及代码示例
- C++ complex atan()用法及代码示例
- C++ atanh()用法及代码示例
- C++ atan2()用法及代码示例
- C++ any_of()用法及代码示例
- C++ acos()用法及代码示例
- C++ abort()用法及代码示例
- C++ complex acosh()用法及代码示例
- C++ array at()用法及代码示例
- C++ array::fill()、array::swap()用法及代码示例
- C++ array::operator[]用法及代码示例
- C++ array::size()用法及代码示例
- C++ array::rbegin()、array::rend()用法及代码示例
- C++ complex abs()用法及代码示例
注:本文由纯净天空筛选整理自 atol() Function with Example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。