JavaTM Platform
Standard Ed. 6

java.math
ö�� RoundingMode

java.lang.Object
  �̳��� java.lang.Enum<RoundingMode>
      �̳��� java.math.RoundingMode
������ʵ�ֵĽӿڣ�
Serializable, Comparable<RoundingMode>

public enum RoundingMode
extends 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 �ȣ�������ģʽ�����Ļ���������ö�١�

�����°汾��ʼ��
1.5
������
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
 

ö�ٳ�����ϸ��Ϣ

UP

public static final RoundingMode UP
Զ���㷽�����������ģʽ��ʼ�նԷ�����������ǰ������ּ� 1��ע�⣬������ģʽʼ�ղ�����ټ���ֵ�ľ���ֵ��

ʾ����

�������� ʹ�� 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


DOWN

public static final RoundingMode DOWN
���㷽�����������ģʽ���Ӳ�����������ǰ������ּ� 1������β����ע�⣬������ģʽʼ�ղ������Ӽ���ֵ�ľ���ֵ��

ʾ����

�������� ʹ�� 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


CEILING

public static final RoundingMode CEILING
�������޴������������ģʽ��������Ϊ������������Ϊ������ RoundingMode.UP��������Ϊ������������Ϊ������ RoundingMode.DOWN��ע�⣬������ģʽʼ�ղ�����ټ���ֵ��

ʾ����

�������� ʹ�� 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


FLOOR

public static final RoundingMode FLOOR
�����޴������������ģʽ��������Ϊ������������Ϊ������ RoundingMode.DOWN��������Ϊ������������Ϊ������ RoundingMode.UP��ע�⣬������ģʽʼ�ղ������Ӽ���ֵ��

ʾ����

�������� ʹ�� 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


HALF_UP

public static final RoundingMode HALF_UP
����ӽ����ַ������������ģʽ������������������ֵľ�����ȣ����������롣������������� >= 0.5����������Ϊͬ RoundingMode.UP������������Ϊͬ RoundingMode.DOWN��ע�⣬������ģʽ����ͨ��ѧУ�イ���������롣

ʾ����

�������� ʹ�� 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


HALF_DOWN

public static final RoundingMode HALF_DOWN
����ӽ����ַ������������ģʽ������������������ֵľ�����ȣ����������롣������������� > 0.5����������Ϊͬ RoundingMode.UP������������Ϊͬ RoundingMode.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


HALF_EVEN

public static final RoundingMode HALF_EVEN
����ӽ����ַ������������ģʽ������������������ֵľ�����ȣ��������ڵ�ż�����롣�������������ߵ�����Ϊ��������������Ϊͬ RoundingMode.HALF_UP�����Ϊż������������Ϊͬ RoundingMode.HALF_DOWN��ע�⣬���ظ�����һϵ�м���ʱ��������ģʽ������ͳ���Ͻ��ۼӴ��������С��������ģʽҲ��Ϊ“���м����뷨”����Ҫ������ʹ�á�������ģʽ������ Java �ж� float �� double �㷨ʹ�õ�������ԡ�

ʾ����

�������� ʹ�� 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


UNNECESSARY

public static final RoundingMode UNNECESSARY
���ڶ�������IJ������о�ȷ���������ģʽ����˲���Ҫ���롣��������ɾ�ȷ����IJ���ָ��������ģʽ�����׳� ArithmeticException��

ʾ����

�������� ʹ�� 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

������ϸ��Ϣ

values

public static final RoundingMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for(RoundingMode c : RoundingMode.values())
        System.out.println(c);

���أ�
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RoundingMode valueOf(String name)
���ش���ָ�����Ƶĸ����͵�ö�ٳ����� �ַ����������������������͵�ö�ٳ����� ��ʶ����ȫƥ�䡣���������ж��� �Ŀո񡣣�

������
ָ��Ҫ���ص�ö�ٳ��������ơ� -
���أ�
���ش���ָ�����Ƶ�ö�ٳ���
�׳���
�����ö������û�д���ָ�����Ƶij����� - ���׳� IllegalArgumentException

valueOf

public static RoundingMode valueOf(int rm)
������ BigDecimal ��������������ģʽ������Ӧ�� RoundingMode ����

������
rm - Ҫת����������������ģʽ
���أ�
�����������Ӧ�� RoundingMode��
�׳���
IllegalArgumentException - ����������Χ

JavaTM Platform
Standard Ed. 6

�ύ��������
�йظ���� API �ο����ϺͿ�����Ա�ĵ�������� Java SE ������Ա�ĵ������ĵ���������ϸ�ġ����򿪷���Ա���������Լ�������������ﶨ�塢ʹ�ü��ɺ͹�������ʾ����

��Ȩ���� 2007 Sun Microsystems, Inc. ��������Ȩ���� ����������֤��������������ĵ����·ַ�������