字符串与基本数据的相互转化
Java.lang包中的Integer类调用其类方法public static int parseInt(string s)可以将由“数字”字符组成的字符序列如“876”,转化成int型数据,例如:
int x;
string s=“876”;
x=Integer.parseInt(s);
类似地,使用Java.lang包中的byte、short、long、float、double类调用相应的类方法:
public static byte parseByte(string s) throws NumberFormatException
public static short parseShort(string s)
throws NumberFormatException
可以将由“数字”字符组成的字符序列转化成相应的基本数据类型。
可以使用string类的下列类方法:
public static string valueOf(byte n)
public static string valueOf(int n)
例子:
今天就这些, 明天继续gogogo!