int i = 1; // -2,147,483,648 to 2,147,483,647
float f = 2.1f; // -3.402823e38 to 3.402823e38
long l = 3; // -922337203685477508 to 922337203685477507
double dbl = 4.5; // -1.79769313486232e308 to 1.79769313486232e308
decimal dec = 5.2m; // -79228162514264337593543950335 to 79228162514264337593543950335
dec = i; // No error
dec = l; // No error
dec = f; // Compiler error
dec = dbl; // Compiler error
f = (float)dec; // No error (May loss precision) ok
**dec = (decimal)dbl;** // No error why it requires ?
为什么上面的代码需要Explicit Cast。 漂浮范围/双>十进制?
答案 0 :(得分:4)
因为它不仅仅是关于精度;你需要考虑范围 - 坦率地说1.79769313486232e308
真的,真的大(如小数点左边的> 300位数)。你的断言“偶数小数范围>浮点数或双精度”是不正确的。
var dbl = double.MaxValue;
var dec = (decimal) dbl; // BOOM!
double
的范围更大而不是decimal
的范围。
此外,您可能需要考虑double.NaN
,double.PositiveInfinity
和double.NegativeInfinity
。
答案 1 :(得分:0)
我认为转换取决于数据类型的大小,而不是数据类型范围。
Integral Types
DataType Size . Net (CTS) Comments
byte 1 System.Byte 0 - 255 It is Unsigned
sbyte 1 System.SByte -128 to 127 - Signed
short 2 System.Int16
ushort 2 System.UInt16
int 4 System.Int32
uint 4 System.Unt32
long 8 System.Int64
ulong 8 System.UInt64
Floating Types
decimal 16 System.Decimal Has up to 28 digits after decimal
float 4 System.Single Has up to 8 digits after decimal
double 8 System.Double Has up to 15 digits after decimal