convert string to integer in c++(在 C++ 中将字符串转换为整数)
本文介绍了在 C++ 中将字符串转换为整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好我知道有人问了很多次,但我没有找到具体问题的答案.
Hello I know it was asked many times but I hadn't found answer to my specific question.
我只想转换只包含十进制数字的字符串:
I want to convert only string that contains only decimal numbers:
例如 256 可以,但 256a 不行.
For example 256 is OK but 256a is not.
不检查字符串可以吗?
谢谢
推荐答案
我能想到的使错误检查成为可选的最简单方法是:
The simplest way that makes error checking optional that I can think of is this:
char *endptr;
int x = strtol(str, &endptr, 0);
int error = (*endptr != ' ');
这篇关于在 C++ 中将字符串转换为整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:在 C++ 中将字符串转换为整数


猜你喜欢
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 近似搜索的工作原理 2021-01-01
- C++ 协变模板 2021-01-01
- 静态初始化顺序失败 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 从python回调到c++的选项 2022-11-16
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01