Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Java BigDecimal intValue example 
 

Java bigdecimal class intValue() method transforms bigdecimal value in to integer type values.

 

Java BigDecimal intValue example

                         

Java bigdecimal class intValue() method transforms bigdecimal value in to integer type values. Method throws NumberFormatException if it finds value other than a integer or double. In the example four bigdecimal objects namely: obj_0, obj_1,  obj_2 & obj_3 respectively  have been created. Except the first object rest all objects are assigned positive decimal values with java.lang.Math class fields and methods. 

In the example along with method generated result, original bigdecimal value is also shown. 

Syntax for using the method: public int intValue()
System.out.println(bigdecimal_objectName.intValue()); 
or
int i = (this.object).intValue();

Java_BigDecimal_intValue.java

import java.math.BigDecimal;

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

    BigDecimal obj_0 = new BigDecimal(-6.3353),
    obj_1 = new BigDecimal(Math.random()),
    obj_2 = 
    new BigDecimal(Math.sin(Math.toRadians(45.0))),
    obj_3 = 
    new BigDecimal(
    Math.toDegrees(Math.atan(Math.toRadians(45.0))));

    BigDecimal eve[] 
    obj_0, obj_1, obj_2, obj_3 };
    System.out.println("BigDecimal objects values " +
        "\n'obj_0 '\nvalue : "
        + eve[0"\ninteger value : " 
        eve[0].intValue());

    System.out.println("\n'obj_1 '\nvalue : " + eve[1]
        "\ninteger value : " + eve[1].intValue());

    System.out.println("\n'obj_2 '\nvalue : " + eve[2]
        "\ninteger value : " + eve[2].intValue());

    System.out.println("\n'obj_3 '\nvalue : " + eve[3]
        "\ninteger value : " + eve[3].intValue());
  }
}

Download the code

                         

» View all related tutorials
Related Tags: c class object objects integer method type default double decimal gd value return int if biginteger example work bigdecimal values

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.