Java.math.BigDecimal.movePointRight() 方法
描述
java.math.BigDecimal.movePointRight(int n) 返回一个 BigDecimal,它与小数点向右移动 n 位的这个等效。 如果 n 为非负数,则调用仅从标度中减去 n。 如果 n 为负数,则调用等效于 movePointLeft(-n)。
此调用返回的 BigDecimal 具有值 (this × 10n) 和 scale max(this.scale()-n, 0)。
声明
以下是 java.math.BigDecimal.movePointRight() 方法的声明。
public BigDecimal movePointRight(int n)
参数
n − 小数点向右移动的位数。
返回值
这个方法返回一个 BigDecimal,它相当于这个小数点向右移动 n 位的方法。
异常
ArithmeticException − 如果规模溢出。
示例
下面的例子展示了 math.BigDecimal.movePointRight() 方法的使用。
package com.tutorialspoint; 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