gpt4 book ai didi

c# - 'float' 的最大值是多少?

转载 作者:行者123 更新时间:2023-12-02 10:43:59 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Integral constant is too large (CS1021) - How to put 1000 extremely big (70+ digits) integers in an array?

(2 个回答)



Why is the "f" required when declaring floats?

(3 个回答)


2年前关闭。




当我检查“float.MaxValue”的值时,我得到:

3.402823E+38

即:

340,282,300,000,000,000,000,000,000,000,000,000,000

那么为什么当我试图将一个小得多的值设置为一个浮点变量时:

float myValue = 1234567890123456789024;

然后我收到一条错误消息:

“积分常数太大” ?

这个值比“3.402823E+38”小得多,为什么我会收到错误消息?

最佳答案

大多数数字类型都有一个 MaxValue 字段

Single.MaxValue Field

Represents the largest possible value of Single. This field is constant.



这相当于
public const float MaxValue = 3.402823E+38;

但是,在这种情况下,您需要使用 f 后缀来指定数字文字的类型,否则它会将其解释为整数类型(在最大范围的级联范围内直到 uint64 )。
float myValue = 1234567890123456789024f;

其他资源

Value types table (C# Reference)

Compiler Error CS1021

Integral constant is too large

A value represented by an integer literal is greater than UInt64.MaxValue.



UInt64.MaxValue Field

Represents the largest possible value of UInt64. This field is constant.


public const ulong MaxValue = 18446744073709551615;

关于c# - 'float' 的最大值是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55544564/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com