|
|
The String and StringBuffer Classes |
Strings to Numbers
TheStringclass itself does not provide any methods for converting aStringto a floating point, integer, or other numerical type. However, four of the "type wrapper" classes (Integer,Double,Float, andLong) provide a class method namedvalueOfthat converts aStringto a that an object of that type. Here's a small, contrived example of theFloatclass'svalueOf:String piStr = "3.14159"; Float pi = Float.valueOf(piStr);
|
|
The String and StringBuffer Classes |