public class AccurateFormatter extends Object
在从计算数据生成测试输出时,我们希望浮点数的最短十进制表示保持往返安全性。也就是说,正确的解析器可以恢复精确的原始数字。
为了效率,此类使用Ryū
算法来生成具有往返安全性的最短字符串表示。
Modifier and Type | Field and Description |
---|---|
static Locale |
STANDARDIZED_LOCALE
用于确保文件可以在没有国际化问题的情况下交换的标准化区域设置。
|
Modifier and Type | Method and Description |
---|---|
static String |
format(double value)
格式化双精度数。
|
static String |
format(int year, int month, int day, int hour, int minute, double seconds)
格式化日期。
|
public static final Locale STANDARDIZED_LOCALE
Copyright © 2002-2023 CS GROUP. All rights reserved.