Monday 7 March 2016

Java Tutorial : Java String(Strings to Numbers)

ValueOfDemo.java
/*
 * Converting Strings to Numbers.
 */
public class ValueOfDemo
{

    public static void main(String[] args)
    {
        /*
         * The Number subclasses that wrap primitive numeric
         * types ( Byte, Integer, Double, Float, Long, and
         * Short) each provide a class method named valueOf
         * that converts a string to an object of that type
         */
        Integer integerObj = Integer.valueOf("100");
        System.out.println("integerObj    = " + integerObj);

        Double doubleObj = Double.valueOf("20.289");
        System.out.println("doubleObj = " + doubleObj);
    }
}
Output
integerObj    = 100
doubleObj = 20.289
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/StringDemo_Convert_Strings_to_Numbers_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StringDemo_Convert_Strings_to_Numbers_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/37d98cca5d81e221a96fffd3a4525d51a6649c0b/BasicJava/StringDemo_Convert_Strings_to_Numbers_App/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment