1. 程式人生 > >java中整型與字元型互轉

java中整型與字元型互轉

1、字元型轉換成整型:

 1.轉換成Int型

int/Integer num  =  Integer.parseInt(String str);

2.轉換成long型

Long/long num    =  Long.parseLong(String str);

3.轉換成short型

short/Short num  =  Short.parseShort(String str);

4.轉換成float型

float/Float num  =  Float.parseFloat(String str);

5.轉換成double型

double/Double num = Double.parseDouble(String str);

2、整型轉換成字元型

1.整型轉換成字元型

String num = Integer.toString(int n);

2.Long型轉換成字元型

String num = Long.toString(long n);

3.Short型轉換成字元型

String num = Short.toString(Short n);

4.Float型轉換成字元型

String num = Float.toString(Float n);

5.Double型轉換成字元型

String num = Double.toString(Double n);