Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
afc47100
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
afc47100
编写于
10月 02, 2012
作者:
O
olagneau
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7050528: Improve performance of java.text.DecimalFormat.format() call stack
Reviewed-by: darcy
上级
7d09db22
变更
6
展开全部
隐藏空白更改
内联
并排
Showing
6 changed file
with
4471 addition
and
19 deletion
+4471
-19
src/share/classes/java/text/DecimalFormat.java
src/share/classes/java/text/DecimalFormat.java
+905
-18
src/share/classes/java/text/NumberFormat.java
src/share/classes/java/text/NumberFormat.java
+12
-1
test/java/text/Format/DecimalFormat/FormatMicroBenchmark.java
.../java/text/Format/DecimalFormat/FormatMicroBenchmark.java
+926
-0
test/java/text/Format/DecimalFormat/GoldenDoubleValues.java
test/java/text/Format/DecimalFormat/GoldenDoubleValues.java
+965
-0
test/java/text/Format/DecimalFormat/GoldenFormattedValues.java
...java/text/Format/DecimalFormat/GoldenFormattedValues.java
+868
-0
test/java/text/Format/DecimalFormat/RoundingAndPropertyTest.java
...va/text/Format/DecimalFormat/RoundingAndPropertyTest.java
+795
-0
未找到文件。
src/share/classes/java/text/DecimalFormat.java
浏览文件 @
afc47100
此差异已折叠。
点击以展开。
src/share/classes/java/text/NumberFormat.java
浏览文件 @
afc47100
/*
* Copyright (c) 1996, 201
0
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 201
2
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -286,10 +286,21 @@ public abstract class NumberFormat extends Format {
* @see java.text.Format#format
*/
public
final
String
format
(
double
number
)
{
// Use fast-path for double result if that works
String
result
=
fastFormat
(
number
);
if
(
result
!=
null
)
return
result
;
return
format
(
number
,
new
StringBuffer
(),
DontCareFieldPosition
.
INSTANCE
).
toString
();
}
/*
* fastFormat() is supposed to be implemented in concrete subclasses only.
* Default implem always returns null.
*/
String
fastFormat
(
double
number
)
{
return
null
;
}
/**
* Specialization of format.
* @exception ArithmeticException if rounding is needed with rounding
...
...
test/java/text/Format/DecimalFormat/FormatMicroBenchmark.java
0 → 100644
浏览文件 @
afc47100
此差异已折叠。
点击以展开。
test/java/text/Format/DecimalFormat/GoldenDoubleValues.java
0 → 100644
浏览文件 @
afc47100
此差异已折叠。
点击以展开。
test/java/text/Format/DecimalFormat/GoldenFormattedValues.java
0 → 100644
浏览文件 @
afc47100
此差异已折叠。
点击以展开。
test/java/text/Format/DecimalFormat/RoundingAndPropertyTest.java
0 → 100644
浏览文件 @
afc47100
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录