Should I use double or float?(我应该使用双精度还是浮点数?)
问题描述
在 C++ 中使用一种代替另一种的优点和缺点是什么?
What are the advantages and disadvantages of using one instead of the other in C++?
推荐答案
如果你想知道真正的答案,你应该阅读每个计算机科学家都应该知道的关于浮点运算的知识.
If you want to know the true answer, you should read What Every Computer Scientist Should Know About Floating-Point Arithmetic.
简而言之,虽然 double
在其表示中允许更高的精度,但对于某些计算,它会产生更大的错误.正确"的选择是:使用尽可能多的精度,但不要更多并选择正确的算法.
In short, although double
allows for higher precision in its representation, for certain calculations it would produce larger errors. The "right" choice is: use as much precision as you need but not more and choose the right algorithm.
无论如何,许多编译器都在非严格"模式下进行扩展浮点数学运算(即使用硬件中可用的更广泛的浮点类型,例如 80 位和 128 位浮点),这也应该被考虑在内.在实践中,您几乎看不出速度上的任何差异——无论如何它们都是硬件原生的.
Many compilers do extended floating point math in "non-strict" mode anyway (i.e. use a wider floating point type available in hardware, e.g. 80-bits and 128-bits floating), this should be taken into account as well. In practice, you can hardly see any difference in speed -- they are natives to hardware anyway.
这篇关于我应该使用双精度还是浮点数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我应该使用双精度还是浮点数?


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