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


java.math.BigDecimal.movePointLeft(int n) 返回一個BigDecimal,它等效於將該值的小數點移動n位到左邊。如果n為非負,則呼叫僅將n新增至刻度。如果n為負時,呼叫相當於呼叫movePointRight(-n)。

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

宣告

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

public BigDecimal movePointLeft(int n)

引數

  • n - 小數點向左移動位數

返回值

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

異常

  • ArithmeticException - 如果刻度溢位

例子

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

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.movePointLeft(3); // 3 points left
        bg4 = bg2.movePointLeft(-2);// 2 points right

	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 0.12323
After moving the Decimal point 12323 is 1232300