Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
对于自定义的数字格式,原程序中只检测和处理了格式中的
,
,对于0!.0,
格式,小数点与,
之间有一个0没有被检测和处理到,所以原数值处理过程中只计算了,
代表的1000,原数值9234读取显示错误结果9.2。我在DataFormatter.java
的对应方法中添加了对于小数点与,
之间的0的个数的检测与处理,使自定义0!.0,
格式的数字结果进行了正确的显示,解决了 #2319 提出的问题。