标签:col short static system 数字 integer void eof 数字转换
一、各种数字类型转换成字符串型:
public static void main(String[] args) { double value = 123456.123; String str = String.valueOf(value); // 其中 value 为任意一种数字类型。 System.out.println("字符串str 的值: " + str); //字符串str 的值: 123456.123 }
二、字符串型转换成各种数字类型:
public static void main(String[] args) { String s = "2"; byte b = Byte.parseByte( s ); short t = Short.parseShort( s ); int i = Integer.parseInt( s ); long l = Long.parseLong( s ); Float f = Float.parseFloat( s ); Double d = Double.parseDouble( s ); }
标签:col short static system 数字 integer void eof 数字转换
原文地址:http://www.cnblogs.com/unknows/p/7446244.html