- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 VB6 的 MSDN 帮助
Floating-point values can be expressed as mmmEeee or mmmDeee, in which mmm is the mantissa and eee is the exponent (a power of 10). The highest positive value of a Single data type is 3.402823E+38, or 3.4 times 10 to the 38th power; the highest positive value of a Double data type is 1.79769313486232D+308, or about 1.8 times 10 to the 308th power. Using D to separate the mantissa and exponent in a numeric literal causes the value to be treated as a Double data type. Likewise, using E in the same fashion treats the value as a Single data type.
const MAX_DOUBLE as Double = 1.79769313486232D+308
An overflow results when you try to make an assignment that exceeds the limitations of the target of the assignment. ...
最佳答案
编辑:
解决了!
Const test As Double = 1.79769313486231E+308 + 5.88768018655736E+293
关于ide - 如何在 VB6 中声明 MAX_DOUBLE?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/929069/
根据 VB6 的 MSDN 帮助 Floating-point values can be expressed as mmmEeee or mmmDeee, in which mmm is the m
我是一名优秀的程序员,十分优秀!