码迷,mamicode.com
首页 > Web开发 > 详细

What floating point types are available in .NET?

时间:2016-01-19 19:25:21      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

The C# standard only lists double and float as floating points available (those being the C# shorthand for System.Double and System.Single),

but the decimal type (shorthand for System.Decimal) is also a floating point type really - it‘s just it‘sdecimal floating point, and the ranges of exponents are interesting.

 

The decimal type is described in another article, so this one doesn‘t go into it any further - we‘re concentrating on double and float.

Both of these are binary floating point types, conforming to IEEE 754 (a standard defining various floating point types).

 

 float is a 32 bit type (1 bit of sign, 23 bits of mantissa, and 8 bits of exponent),

and double is a 64 bit type (1 bit of sign, 52 bits of mantissa and 11 bits of exponent).

 

http://kipirvine.com/asm/workbook/floating_tut.htm

What floating point types are available in .NET?

标签:

原文地址:http://www.cnblogs.com/chucklu/p/5142854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!