Home Java Java-bigdecimal Java BigDecimal movePointRight example



Java BigDecimal movePointRight example
Posted on: November 24, 2008 at 12:00 AM
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. 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

Related Tags for Java BigDecimal movePointRight example:
cgitideclassobjectintegermethodsedtypedoubledecimalgdoperatorvaluenumberreturnintthisoperaidwarmoveparentifpoiexamplecallbigdecimalvaluestopointexamsignedssedotcissishbieilsignitshiftlsdemopeparenthesesimmaninpasscalasmntpartrsidsidecajadclesemdigitsdigendbigallpenmehowobjrateratesdotorrightxaxamptrigsurnsoatanyowaisllmpleaandarstrrdsvavepssrirdrenthbelostaluftimanylsojeigdpleplmovndono


More Tutorials from this section

Ask Questions?    Discuss: Java BigDecimal movePointRight example  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.