- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 decimal
类型的变量,其值为 1.0
。我将它保存到 SQL Server 2012 表的一个列中,该表的类型是 decimal(10, 8)
。
检索值后,我看到它是 1,但是当我调用 ToString()
时,返回的值是 "1.00000000"
(见下文)。
我意识到小数点后8位对应数据库中的数据类型。但是, Entity Framework 生成的属性中没有赋予它这种行为的属性或任何东西,所以我不知道这是怎么发生的。
以下是我在立即窗口中进行的一些测试:
myDecimal
1
myDecimal.ToString()
"1.00000000"
myDecimal == 1
true
myDecimal == 1.0m
true
正如您从最后 2 次测试中看到的那样,这也不是浮点错误的情况(不是我期望的,因为十进制是定点数,但我不得不尝试,因为我用完了想法)。
知道小数的 ToString()
是如何产生一个有 8 位小数的字符串的吗?
编辑:为了比较,请看下面的测试。
1m.ToString()
"1"
最佳答案
原因是小数类型没有规范化。同一个数字有多种表示形式,这些表示形式将表示为不同的字符串。
这不是您的数据库类型的特殊属性,这是 decimal 的正常工作方式。没有特殊的 DataAnotation 或任何附加到变量的东西。
(1m).ToString() == "1"
(1.00000000m).ToString() == "1.00000000"
((1m)==(1.00000000m)) == true
对于给定的 double,只有一种有效表示,即 mantissa * 2exponent
的一种组合对于十进制,mantissa * 10exponent 有多个有效表示。每个代表相同的数字,但通过多种可能的表示形式提供的附加信息用于在将十进制转换为字符串时选择尾随数字的默认数量。确切的细节并没有很好的记录,而且我没有找到任何关于在添加或乘以小数时指数究竟发生了什么的信息。但它对 ToString() 的影响很容易验证。
缺点是 Equals() 和 GetHashCode() 操作比规范化数字格式更复杂,并且在实现中存在细微错误:C# Why can equal decimals produce unequal hash values?
This article by Jon Skeet goes into a bit more detail :
A decimal is stored in 128 bits, even though only 102 are strictly necessary. It is convenient to consider the decimal as three 32-bit integers representing the mantissa, and then one integer representing the sign and exponent. The top bit of the last integer is the sign bit (in the normal way, with the bit being set (1) for negative numbers) and bits 16-23 (the low bits of the high 16-bit word) contain the exponent. The other bits must all be clear (0). This representation is the one given by decimal.GetBits(decimal) which returns an array of 4 ints. [...]
The decimal type doesn't normalize itself - it remembers how many decimal digits it has (by maintaining the exponent where possible) and on formatting, zero may be counted as a significant decimal digit.
您可以通过比较 decimal.GetBits() 返回的值来验证您拥有的两个小数是否不相同,即:
decimal.GetBits(1m) == {int[4]}
[0]: 1
[1]: 0
[2]: 0
[3]: 0
decimal.GetBits(1.00000000m) == {int[4]}
[0]: 100000000
[1]: 0
[2]: 0
[3]: 524288
依赖这种行为来格式化小数可能很诱人,但我建议在转换为字符串时始终明确选择精度,以避免混淆和不可预见的意外,例如,如果数字事先乘以某个因子。
关于c# - 为什么这个小数点在 ToString() 上显示小数点后 8 位?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27268008/
正在阅读 Underscore.js 以了解它的 is[String|Number|...] 方法是如何工作的,现在我很困惑。下划线: toString.call(obj) == ['object '
scala> Array(1, 2, 3).toString res1: String = [I@11cf437c scala> List(1, 2, 3).toString res2: String
我在将字符串从 stringbuilder 转换为字符串时遇到问题。问题类似于 this issue但略有不同: 这是我的简化代码: StringBuilder sb = new StringBuil
我正在尝试将从正在构建的搜索功能中名为 Part 的模型返回的 int id 转换为字符串,以便简化搜索。 这是我目前使用的 if 语句: if(part.getId().toString().ind
我需要从所选内容中提取文本并将其发送到 TTS 服务。 TTS 服务将返回一个流 URL 和每个单词的一组索引,指示它们的开始和结束位置(时间和文本)。 当用户播放流时,我想在读出每个单词时突出显示它
我想知道人们在 Java 的 toString() 方法中放入了什么。 我一直在向一些新类添加一些内容,并且想知道它是否应该包含类名。 在类ClassConfig中,我无法决定是否应该拥有 @Over
这个问题已经有答案了: How do I compare strings in Java? (23 个回答) 已关闭 8 年前。 下面是我的主要方法,其中比较两个对象引用。覆盖toString()方法
我的问题是,JAVA中没有提供toString()方法的类是否可以打印出特定信息? 问题在于:我们为我们的应用程序提供了一个记录器(使用aspectJ),它打印出给出的特定参数。例如: public
基本上这就是我想要实现的目标。 classname@address(?)[original toString()], object's name, object's age @Override pub
据我所知,Scala 中的中缀运算符的使用应该等同于方法的调用。所以: scala> "a" + 3.toString res0: java.lang.String = a3 是相同的: scala>
这个问题已经有答案了: Why can't I access a property of an integer with a single dot? (5 个回答) 已关闭 7 年前。 functio
我正在进行测试,并且给出了很多单元(隐藏)测试,但是我的一段代码遇到了这个错误。大家能帮帮我吗? getString(comment) { const authorName = comment.get
return toString.call(obj) 和 return obj.toString() 有什么区别? 我通常会找到具有这些不同风格的代码 最佳答案 toString.call(obj) 返
例如,我必须在每个数字到字符串的转换中使用 .ToString(CultureInfo.CurrentCulture)。我能否以某种方式重写 .ToString(),这样我就不会在字符串转换中显式地收
var d = []; console.log(typeof d); // weird! console.log(d.toString()); //Prints nothing since there
当对象字面量调用toString()方法如{}.toString()会导致语法错误,但是当数组字面量调用toString()没关系。当我将对象文字分配给一个变量时,当它调用 toString() 方法
我在打印特殊数组时遇到问题: 我使用 System.out.println(Arrays.toString()); 打印多个对象的数组但现在数组中充满了对象,这些对象具有 char 值,我想打印分配给
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
> ~0..toString(2) -1 > ~1..toString(2) -2 > ~2..toString(2) -11 > ~3..toString(2) -12 > (~1).toStrin
这是我的问题,我的机器使用法语文化,因此默认情况下它以法语方式解析 (3,141592)。 如果机器文化不是美国,这里是重现我的问题的代码: float number = 4103.26808
我是一名优秀的程序员,十分优秀!