C++ 后缀#DEN 对变量值的含义是什么

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/760030/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-27 17:09:05  来源:igfitidea点击:

What does the suffix #DEN mean on the value of a variable

c++visual-studiodebuggingvisual-studio-2005

提问by davetapley

When debugging in VS2005 I have a float in the Locals window whose values is: 1.744e-039#DEN

在 VS2005 中调试时,我在 Locals 窗口中有一个浮点数,其值为: 1.744e-039#DEN

What does the #DENsignify/stand for?

什么是#DEN,则意味着/代表什么?

采纳答案by Anton Gogolev

This is for "denormalized number". See thisfor more info.

这是“非规范化数字”。有关更多信息,请参阅内容。

回答by MSalters

Denormalized; too small (close to zero) to be represented as a number in the form 1.M * 2^E

非规范化;太小(接近于零)而无法以 1.M * 2^E 的形式表示为数字

回答by MSalters

Denormal - too close to zero - see http://en.wikipedia.org/wiki/Denormal

异常 - 太接近于零 - 请参阅http://en.wikipedia.org/wiki/Denormal