一、各种数字类型转换成字符串型:
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 ); }
时间: 2024-10-13 10:04:58