Click here to watch in Youtube :
https://www.youtube.com/watch?v=QvwMV4Yk7sg&list=UUhwKlOVR041tngjerWxVccw
/* * 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); } }
integerObj = 100 doubleObj = 20.289
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:
No comments:
Post a Comment