Java BigDecimal movePointRight example

Example below demonstrates bigdecimal class movePointRight method example. Method returns a bigdecimal object value.

Java BigDecimal movePointRight example

Example below demonstrates bigdecimal class movePointRight method example. Method returns a bigdecimal object value.

Java BigDecimal movePointRight example

Java BigDecimal movePointRight example

     

Example below demonstrates bigdecimal class movePointRight method example. Method returns a bigdecimal object value. Method moves the decimal point also called dot operator(.) towards right side of the number. To how many digits this shifting will done, will depend on the integer number passed inside the parentheses of the method. In the example one bigdecimal  object deadly is made and assigned integer as well double type values. 

In case of integers, n number zeroes are get attached with the number.
Method throws NumberFormatException if it finds value other integer & double. 

Syntax for using the method : public BigDecimal movePointRight(int n)
BigDecimal objects with names x & y;
y = x.movePointRight(n);

Note : Integer variable n decides the number up to which shifting of the dot operator towards Right, will take place.

Java_bigdecimal_movePointRight.java

import java.math.BigDecimal;

public class Java_bigdecimal_movePointRight {
  public static void main(String args[]) {

  Double value_0 = new Double(143);

  BigDecimal deadly = new BigDecimal(value_0);

  System.out.println("deadly object value :" +
  " " + deadly
  "\nMethod generated value : " 
  + deadly.movePointRight(2));
  System.out.println("\n\ndeadlyfy object " +
  "value : " + deadly
  "\nMethod generated value : " 
  + deadly.movePointRight(3));

  deadly = new BigDecimal(Math.PI);

  System.out.println("\ndeadly object value " +
  ": " + deadly
  "\nMethod generated value : " +
  "" + deadly.movePointRight(2));
  System.out.println("\n\ndeadly object value " +
  ": " + deadly + "\nMethod generated " +
  "value : " +
  "" + deadly.movePointRight(4));

  }

Download the code