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

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Java BigDecimal floatValue method example 
 

Java bigdecimal class floatValue() method translates bigdecimal value in to float type value. Method throws NumberFormatException if it finds value other than a integer or float.

 

Java BigDecimal floatValue method example

                         

Java bigdecimal class floatValue() method translates bigdecimal value in to float type value. Method throws  NumberFormatException if it finds value other than a integer or float. In the example four bigdecimal objects namely: weisz_0, weisz_1, weisz_2 & weisz_3 respectively have been created. 

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

Syntax for using the method: public float floatValue()
System.out.println(bigdecimal_objectName.floatValue()); 
                        or
BigDecimal x = this.object.floatValue();

Java_BigDecimal_float.java

import java.math.BigDecimal; 


public class Java_BigDecimal_float {
  public static void main(String args[]) {
    
    String rachel[] {"http://""www.""newstrackindia"".com"};
    BigDecimal weisz_0 = new BigDecimal(rachel.length + 0.451245124512),
    weisz_1 = new BigDecimal(rachel[0].length() 0.1234213421342134),
    weisz_2 = new BigDecimal(rachel[1].length() 0.7896789678967896),
    weisz_3 = new BigDecimal(rachel[2].length() 0.3658365836583658);  
    
    
    System.out.println("BigDecimal objects values \n'weisz_0 '\nvalue : "
        + weisz_0
        +"\nfloat value : " + weisz_0.floatValue());
  
    System.out.println("\n'weisz_1 '\nvalue : " + weisz_1
                       +"\nfloat value : " + weisz_1.floatValue());

    System.out.println("\n'weisz_3'\nvalue : " + weisz_2
                        +"\nfloat value : " + weisz_2.floatValue());

    System.out.println("\n'weisz_3 '\nvalue : " + weisz_3
                        +"\nfloat value : " + weisz_3.floatValue());
  }
}

Download the code

                         

» View all related tutorials
Related Tags: c class object method decimal gd trac value return this invoke if ie example work bigdecimal values exam ci bi

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.