学习JAVA打卡第三十九天

字符串与基本数据的相互转化

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)

例子:

学习JAVA打卡第三十九天_第1张图片

今天就这些, 明天继续gogogo!

 

你可能感兴趣的:(java,学习,开发语言)