Correct usage of strtol(strtol的正确使用)
问题描述
下面的程序将字符串转换为long,但根据我的理解,它也会返回错误.我所依赖的事实是,如果 strtol 成功地将字符串转换为 long,那么 strtol 的第二个参数应该等于 NULL.当我使用 55 运行以下应用程序时,我收到以下消息.
The program below converts a string to long, but based on my understanding it also returns an error. I am relying on the fact that if strtol successfully converted string to long, then the second parameter to strtol should be equal to NULL. When I run the below application with 55, I get the following message.
./convertToLong 55
Could not convert 55 to long and leftover string is: 55 as long is 55
如何从 strtol 中成功检测错误?在我的应用程序中,零是一个有效值.
How can I successfully detect errors from strtol? In my application, zero is a valid value.
代码:
#include <stdio.h>
#include <stdlib.h>
static long parseLong(const char * str);
int main(int argc, char ** argv)
{
printf("%s as long is %ld
", argv[1], parseLong(argv[1]));
return 0;
}
static long parseLong(const char * str)
{
long _val = 0;
char * temp;
_val = strtol(str, &temp, 0);
if(temp != ' ')
printf("Could not convert %s to long and leftover string is: %s", str, temp);
return _val;
}
推荐答案
大功告成.temp 本身不会为空,但是如果整个字符串被转换,它会指向一个空字符,所以你需要解引用它:
You're almost there. temp itself will not be null, but it will point to a null character if the whole string is converted, so you need to dereference it:
if (*temp != ' ')
这篇关于strtol的正确使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:strtol的正确使用
基础教程推荐
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
