Java.math.BigDecimal.movePointRight()方法範例


 java.math.BigDecimal.movePointRight(int n) 方法返回一個BigDecimal,它等效於將該值的小數點向右移動n位。如果n為非負,則呼叫僅僅減去n。如果n為負,則呼叫等效於movePointLeft(-N)。

此呼叫返回BigDecimal的值(this × 10n) 和比例 max(this.scale()-n, 0).

宣告

以下是java.math.BigDecimal.movePointRight()方法的宣告

public BigDecimal movePointRight(int n)

引數

  • n - 小數點向右移動數

返回值

此方法返回一個BigDecimal,它等效於將該值的小數點向右移動n位

異常

  • ArithmeticException - 如果刻度溢位

例子

下面的例子顯示math.BigDecimal.movePointRight()方法的用法

package com.yiibai;

import java.math.*;

public class BigDecimalDemo {

    public static void main(String[] args) {

        // create 4 BigDecimal objects
        BigDecimal bg1, bg2, bg3, bg4;

        bg1 = new BigDecimal("123.23");
        bg2 = new BigDecimal("12323");

        bg3 = bg1.movePointRight(3); // 3 places right
        bg4 = bg2.movePointRight(-2);// 2 places left

	String str1 = "After moving the Decimal point " + bg1 + " is " + bg3;
	String str2 = "After moving the Decimal point " + bg2 + " is " + bg4;

        // print bg3, bg4 values
        System.out.println( str1 );
        System.out.println( str2 );
    }
}

讓我們編譯和執行上面的程式,這將產生以下結果:

After moving the Decimal point 123.23 is 123230
After moving the Decimal point 12323 is 123.23