How to convert a string representing decimal number in exponential form to float in Qt?(如何将表示以指数形式表示的十进制数的字符串转换为Qt中的浮点数?)
问题描述
我在一个以指数形式表示的文本文件中有一些十进制数字,例如:144.2e-3.我想将值存储在浮点数中.在 qt 中,当我直接使用number.toFloat()"方法时,它返回0".请帮忙.
I have some decimal numbers in a text file represented in exponential form Eg: 144.2e-3. I want to store the values in float. In qt it returns "0" when i directly use the "number.toFloat()" method. Please help.
推荐答案
toFloat() 应该可以工作.检查您的字符串是否仅包含数字.如果字符串还包含其他内容,例如 "144.2e-3 a"
,则 toFloat() 返回 0.请注意,字符串中的其他数字也会导致转换失败,例如QString("144.2e-3 100").toFloat()
将返回 0.
toFloat() should work. Check that your string contains only the number. If the string contains something else too, for example "144.2e-3 a"
, then the toFloat() returns 0. Note that also other numbers in the string will cause the conversion to fail, for example QString("144.2e-3 100").toFloat()
will return 0.
数字字符串中的额外空格无关紧要,但其他字符可以.
Additional whitespace in the number string doesn't matter, but other characters do.
这篇关于如何将表示以指数形式表示的十进制数的字符串转换为Qt中的浮点数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将表示以指数形式表示的十进制数的字符串转换为Qt中的浮点数?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01