作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有 double 类型的变量 a、b、c,令 c:=a/b,并给 a 和 b 值分别为 7 和 10,则 c 的值 0.7 将注册为小于 0.70。
另一方面,如果变量都是类型扩展的,则 c 的值 0.7 不会注册为小于 0.70。
这看起来很奇怪。我缺少什么信息?
最佳答案
首先需要注意的是,Delphi 中的浮点文字是扩展类型。因此,当您将 double 与文字进行比较时, double 可能首先“扩展”为扩展,然后进行比较。 (编辑:这仅在 32 位应用程序中有效。在 64 位应用程序中,Extended
是 Double
的别名)
这里会显示所有的ShowMessage。
procedure DoSomething;
var
A, B : Double;
begin
A := 7/10;
B := 0.7; //Here, we lower the precision of "0.7" to double
//Here, A is expanded to Extended... But it has already lost precision. This is (kind of) similar to doing Round(0.7) <> 0.7
if A <> 0.7 then
ShowMessage('Weird');
if A = B then //Here it would work correctly.
ShowMessage('Ok...');
//Still... the best way to go...
if SameValue(A, 0.7, 0.0001) then
ShowMessage('That will never fails you');
end;
这里有一些文献供您引用
What Every Computer Scientist Should Know About Floating-Point Arithmetic
关于德尔福数学: Why is 0. 7<0.70?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2754240/
我是一名优秀的程序员,十分优秀!