当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.math.BigDecimal.movePointLeft()用法及代码示例



描述

这个java.math.BigDecimal.movePointLeft(int n)返回一个 BigDecimal,它与小数点向左移动 n 位等价。如果 n 为非负数,则调用仅将 n 添加到比例中。如果 n 为负,则调用等效于 movePointRight(-n)。

此调用返回的 BigDecimal 具有值 (this × 10-n) 和缩放最大值(this.scale()+n, 0)。

声明

以下是声明java.math.BigDecimal.movePointLeft()方法。

public BigDecimal movePointLeft(int n)

参数

n− 小数点向左移动的位数。

返回值

此方法返回一个 BigDecimal,它等同于小数点向左移动 n 位的小数点。

异常

ArithmeticException− 如果水垢溢出。

示例

下面的例子展示了 math.BigDecimal.movePointLeft() 方法的用法。

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.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

相关用法


注:本文由纯净天空筛选整理自 Java.math.BigDecimal.movePointLeft() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。