Java.math.BigDecimal.movePointRight() 方法



说明

java.math.BigDecimal.movePointRight(int n) 返回一个 BigDecimal,它等效于将小数点向右移动 n 位的 BigDecimal。如果 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 位的 BigDecimal。

异常

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
java_math_bigdecimal.htm
广告