我在AS3中使用NumberFormatter时遇到了这种奇怪的行为。
了解我需要使用NumberBaseRoundType.UP
非常重要,因为我需要在申请信用时使用NumberBaseRoundType.DOWN
。
考虑到值为2的舍入精度,我想NumberFormatter不应该改变我的数字。在下面的示例中,2.43一旦格式化为2.44 ..!
所以Math.pow(...)
不是我正在寻找PLUS的解决方案,我非常有兴趣了解这是怎样以及为什么会发生这种情况。谢谢!
var roundUp:NumberFormatter = new NumberFormatter();
roundUp.rounding = NumberBaseRoundType.UP;
roundUp.precision = 2;
trace(roundUp.format(2.41)); // Output : 2.41
trace(roundUp.format(2.42)); // Output : 2.42
trace(roundUp.format(2.43)); // Output : 2.44 <-- ???
trace(roundUp.format(2.44)); // Output : 2.44
trace(roundUp.format(2.45)); // Output : 2.46 <-- ???
trace(roundUp.format(2.46)); // Output : 2.46
答案 0 :(得分:0)
这不是一个完整的答案。但是要开始使用哪个NumberFormatter类(它来自哪个包)。一些源是可用的,其中一些包含在播放器本身并且不可访问,但是在查看4.6框架中包含在Spark中的on时,它包含了这个类级别注释,提供了一些见解:
/**
* The NumberFormatter class provides locale-sensitive formatting
* and parsing of numeric values. It can format <code>int</code>,
* <code>uint</code>, and <code>Number</code> objects.
*
* <p>This class is a wrapper class around the
* flash.globalization.NumberFormatter class.
* Therefore, the locale-specific formatting
* is provided by the flash.globalization.NumberFormatter.
* However, this NumberFormatter class can be used in MXML declarations,
* uses the locale style for the requested Locale ID name, and has
* methods and properties that are bindable.
* </p>
*
* <p>The flash.globalization.NumberFormatter class use the
* underlying operating system for the formatting functionality and
* to supply the locale-specific data. On some operating systems, the
* flash.globalization classes are unsupported, on these systems this wrapper
* class provides fallback functionality.</p>
*
* @mxml <p>The <code><s:NumberFormatter></code> tag inherits all of the tag
* attributes of its superclass and adds the following tag attributes:</p>
*
* <pre>
* <s:NumberFormatter
* <strong>Properties</strong>
* negativeNumberFormat="<i>locale and OS dependent</i>"
* />
* </pre>
*
* @includeExample examples/NumberFormatterExample1.mxml
* @includeExample examples/NumberFormatterExample2.mxml
*
* @see flash.globalization.NumberFormatter
*
* @langversion 3.0
* @playerversion Flash 10.1
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
最终虽然它声明播放器以某种方式使用底层操作系统来实现格式化。这肯定是一个奇怪的问题,但是如果之前没有发现并且没有发布解释或至少是错误报告,如果它实际上是flash播放器中的问题,我会感到惊讶。有关SDK版本和播放器版本的更多详细信息可能会有所帮助,您也尝试过摆弄其中任何一个,结果是否有任何变化?
此外,根据您尝试实现的目标,您可以通过编写自己的类来处理此案例的格式化,如果它只是一个您需要处理的一个场景,那么就可以解决这个问题。这个,如果它更像是系统范围内使用的东西,需要更多的NumberFormatter类的功能,我可以理解想要解决潜在的问题。