Convert Java Float to Numeric Primitive Data Types : float « Data Type « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Data Type » floatScreenshots 
Convert Java Float to Numeric Primitive Data Types
     

public class Main {

  public static void main(String[] args) {

    Float fObj = new Float("10.50");
    byte b = fObj.byteValue();
    System.out.println(b);

    short s = fObj.shortValue();
    System.out.println(s);

    int i = fObj.intValue();
    System.out.println(i);

    float f = fObj.floatValue();
    System.out.println(f);

    double d = fObj.doubleValue();
    System.out.println(d);
  }
}

   
    
    
    
    
  
Related examples in the same category
1. Float class creates primitives that wrap themselves around data items of the float data type
2. convert Fahrenheit to Celsius back and forth with float
3. Floating-point comparisonsFloating-point comparisons
4. Float Double Time Float Double Time
5. Floating-point error diagnostics
6. Floating pioint comparisons
7. Min and Max values of data type float
8. Java float is 32 bit single precision type and used when fractional precision calculation is required.
9. Use toString method of Float class to convert Float into String.
10. Use Float constructor to convert float primitive type to a Float object.
11. Convert Java String to Float Object
12. Java Float Comparison
13. Java Float isInfinite Method
14. Java Float isNaN Method
15. Java Float Wrapper Class
16. Compare Two Java float Arrays
17. Convert from float to String
18. Convert from String to float
19. Pass floats as string literals to a method
20. Converting a String to a float type Number
21. Check if a string is a valid number
22. Floating­Point Types
23. Float compare to Float compare to
24. Returns the sign for float value x
25. Gets the maximum of three float values.
26. Gets the minimum of three float values.
27. Compares two floats for order.
28. Clones a two dimensional array of floats.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.