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