|
JavaTM Platform Standard Ed. 6 |
|||||||||
��һ���� ��һ���� | ��� ��� ������ | |||||||||
ժҪ�� Ƕ�� | ö�ٳ��� | �ֶ� | ���� | ��ϸ��Ϣ�� ö�ٳ��� | �ֶ� | ���� |
java.lang.Objectjava.lang.Enum<RoundingMode>
java.math.RoundingMode
public enum RoundingMode
Ϊ���ܶ������ȵ���ֵ����ָ��һ��������Ϊ��ÿ������ģʽ��ָʾ��μ��㷵��������λ���������Чλ��������ص�λ���ȱ�ʾ��ȷ��ֵ��������λ���٣���������λ����Ϊ������������������Щλ������ֵ��������Ρ����仰˵��������һ����ֵ���������ֵľ���ֵ���ܴ��� 1��
ÿ������ģʽ����������һ�������г��������ص�����ģʽ�½���ͬ����λʮ����������Ϊһλʮ�����������еĽ��������ͨ�����·�ʽ��ã�ʹ��ָ����ֵ����һ�� BigDecimal ���֣��γ�һ�������ʵ����ã�precision ����Ϊ 1��roundingMode ����Ϊ��ص�����ģʽ���� MathContext
����ʹ���ʵ��� MathContext �Դ����ֵ��� round
��������һ�����ܱ����ñ���ʾ������������ģʽ����Щ��������Ľ����
���ݸ���������ģʽ��������������Ϊһλ���Ľ�� | ||||||||
---|---|---|---|---|---|---|---|---|
�������� | UP | DOWN | CEILING | FLOOR | HALF_UP | HALF_DOWN | HALF_EVEN | UNNECESSARY |
5.5 | 6 | 5 | 6 | 5 | 6 | 5 | 6 | �׳� ArithmeticException |
2.5 | 3 | 2 | 3 | 2 | 3 | 2 | 2 | �׳� ArithmeticException |
1.6 | 2 | 1 | 2 | 1 | 2 | 2 | 2 | �׳� ArithmeticException |
1.1 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | �׳� ArithmeticException |
1.0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
-1.0 | -1 | -1 | -1 | -1 | -1 | -1 | -1 | -1 |
-1.1 | -2 | -1 | -1 | -2 | -1 | -1 | -1 | �׳� ArithmeticException |
-1.6 | -2 | -1 | -1 | -2 | -2 | -2 | -2 | �׳� ArithmeticException |
-2.5 | -3 | -2 | -2 | -3 | -3 | -2 | -2 | �׳� ArithmeticException |
-5.5 | -6 | -5 | -5 | -6 | -6 | -5 | -6 | �׳� ArithmeticException |
�� enum ������ȡ�� BigDecimal
��BigDecimal.ROUND_UP
��BigDecimal.ROUND_DOWN
�ȣ�������ģʽ�����Ļ���������ö�١�
BigDecimal
,
MathContext
ö�ٳ���ժҪ | |
---|---|
CEILING
�������������������ģʽ�� |
|
DOWN
���㷽�����������ģʽ�� |
|
FLOOR
�����������������ģʽ�� |
|
HALF_DOWN
����ӽ����ַ������������ģʽ������������������ֵľ�����ȣ����������롣 |
|
HALF_EVEN
����ӽ����ַ������������ģʽ������������������ֵľ�����ȣ��������ڵ�ż�����롣 |
|
HALF_UP
����ӽ����ַ������������ģʽ������������������ֵľ�����ȣ����������롣 |
|
UNNECESSARY
���ڶ�������IJ������о�ȷ���������ģʽ����˲���Ҫ���롣 |
|
UP
Զ���㷽�����������ģʽ�� |
����ժҪ | |
---|---|
static RoundingMode |
valueOf(int rm)
������ BigDecimal ��������������ģʽ������Ӧ�� RoundingMode ���� |
static RoundingMode |
valueOf(String name)
���ش���ָ�����Ƶĸ����͵�ö�ٳ����� |
static RoundingMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
���� java.lang.Enum �̳еķ��� |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
���� java.lang.Object �̳еķ��� |
---|
getClass, notify, notifyAll, wait, wait, wait |
ö�ٳ�����ϸ��Ϣ |
---|
public static final RoundingMode UP
ʾ����
�������� | ʹ�� UP ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | 6 |
2.5 | 3 |
1.6 | 2 |
1.1 | 2 |
1.0 | 1 |
-1.0 | -1 |
-1.1 | -2 |
-1.6 | -2 |
-2.5 | -3 |
-5.5 | -6 |
public static final RoundingMode DOWN
ʾ����
�������� | ʹ�� DOWN ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | 5 |
2.5 | 2 |
1.6 | 1 |
1.1 | 1 |
1.0 | 1 |
-1.0 | -1 |
-1.1 | -1 |
-1.6 | -1 |
-2.5 | -2 |
-5.5 | -5 |
public static final RoundingMode CEILING
ʾ����
�������� | ʹ�� CEILING ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | 6 |
2.5 | 3 |
1.6 | 2 |
1.1 | 2 |
1.0 | 1 |
-1.0 | -1 |
-1.1 | -1 |
-1.6 | -1 |
-2.5 | -2 |
-5.5 | -5 |
public static final RoundingMode FLOOR
ʾ����
�������� | ʹ�� FLOOR ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | 5 |
2.5 | 2 |
1.6 | 1 |
1.1 | 1 |
1.0 | 1 |
-1.0 | -1 |
-1.1 | -2 |
-1.6 | -2 |
-2.5 | -3 |
-5.5 | -6 |
public static final RoundingMode HALF_UP
ʾ����
�������� | ʹ�� HALF_UP ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | 6 |
2.5 | 3 |
1.6 | 2 |
1.1 | 1 |
1.0 | 1 |
-1.0 | -1 |
-1.1 | -1 |
-1.6 | -2 |
-2.5 | -3 |
-5.5 | -6 |
public static final RoundingMode HALF_DOWN
ʾ����
�������� | ʹ�� HALF_DOWN ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | 5 |
2.5 | 2 |
1.6 | 2 |
1.1 | 1 |
1.0 | 1 |
-1.0 | -1 |
-1.1 | -1 |
-1.6 | -2 |
-2.5 | -2 |
-5.5 | -5 |
public static final RoundingMode HALF_EVEN
ʾ����
�������� | ʹ�� HALF_EVEN ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | 6 |
2.5 | 2 |
1.6 | 2 |
1.1 | 1 |
1.0 | 1 |
-1.0 | -1 |
-1.1 | -1 |
-1.6 | -2 |
-2.5 | -2 |
-5.5 | -6 |
public static final RoundingMode UNNECESSARY
ʾ����
�������� | ʹ�� UNNECESSARY ����ģʽ ��������������Ϊһλ�� |
---|---|
5.5 | �׳� ArithmeticException |
2.5 | �׳� ArithmeticException |
1.6 | �׳� ArithmeticException |
1.1 | �׳� ArithmeticException |
1.0 | 1 |
-1.0 | -1 |
-1.1 | �׳� ArithmeticException |
-1.6 | �׳� ArithmeticException |
-2.5 | �׳� ArithmeticException |
-5.5 | �׳� ArithmeticException |
������ϸ��Ϣ |
---|
public static final RoundingMode[] values()
for(RoundingMode c : RoundingMode.values()) System.out.println(c);
public static RoundingMode valueOf(String name)
ָ��Ҫ���ص�ö�ٳ��������ơ�
-
�����ö������û�д���ָ�����Ƶij�����
- ���׳� IllegalArgumentExceptionpublic static RoundingMode valueOf(int rm)
BigDecimal
��������������ģʽ������Ӧ�� RoundingMode ����
rm
- Ҫת����������������ģʽ
IllegalArgumentException
- ����������Χ
|
JavaTM Platform Standard Ed. 6 |
|||||||||
��һ���� ��һ���� | ��� ��� ������ | |||||||||
ժҪ�� Ƕ�� | ö�ٳ��� | �ֶ� | ���� | ��ϸ��Ϣ�� ö�ٳ��� | �ֶ� | ���� |
��Ȩ���� 2007 Sun Microsystems, Inc. ��������Ȩ���� ����������֤��������������ĵ����·ַ�������