在幕后,C#/.NET 中的十进制值类型发生了什么?
decimal
类型是如何实现的?
更新
- 这是一个 128 位值类型(16 字节)
- 1 个符号位
- 96 位(12 字节)用于尾数
- 8 位用于指数
- 剩余位(其中 23 个!)设置为 0
谢谢!我将坚持使用 64 位长和我自己的隐含比例。
How is the decimal
type implemented?
Update
- It's a 128-bit value type (16 bytes)
- 1 sign bit
- 96 bits (12 bytes) for the mantissa
- 8 bits for the exponent
- remaining bits (23 of them!) set to 0
Thanks! I'm gonna stick with using a 64-bit long with my own implied scale.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
维基百科上的十进制浮点文章,其中包含有关
System.Decimal
。Decimal Floating Point article on Wikipedia with specific link to this article about
System.Decimal
.来自 C# 语言规范:
From the C# Language Specifications:
如 MSDN 的十进制结构页面所述 http:// /msdn.microsoft.com/en-us/library/system.decimal(VS.80).aspx:
As described on MSDN's Decimal Structure page at http://msdn.microsoft.com/en-us/library/system.decimal(VS.80).aspx:
来自 J.Richter 的“CLR via C#”第三版:
From "CLR via C#" 3rd Edition by J.Richter:
来源
来源
Source
Source
一个简单的解释在这里 http://csharpindepth.com /Articles/General/Decimal.aspx
A simple explanation is here http://csharpindepth.com/Articles/General/Decimal.aspx