基本的数据类型不具有对象的特性。
基本的数据类型有对应的包装类
boolean Boolean
byte Byte
char Character
short Short
int Integer
long Long
float Float
double Double
将string转化为int的三种方法
int w = new Integer(args[0]).intValue();
int h = Integer.parseInt(args[1]);
int h = Integer.valueOf(args[1]).intValue();