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的正确使用


基础教程推荐
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04