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