Java.整型包装类.String类.字符串.整型数据.转换

class test { public static void main(String args[]) { //字符串转换成整型数据的三种方法。通过利用整型对象,字符串对象--构造方法方法/valueOf()-->整型对象--intValue()方法-->整型数据 或者 字符串对象--parseInt()-->整型数据 int w=new Integer(args[0]).intValue(); //Integer(String s) Integer类的一个构造函数,通过传入一个字符串函数,生成一个Integer类型的整型对象。 intValue()是Integer整型对象的一个方法,返回Integer整型对象对应的整型数据。 int h=Integer.parseInt(args[1]); //parseInt(String s) Integer类的一个静态方法。接受一个字符串,返回一个对应的整型数据 //int h=new Integer.valueOf(args[1]).intValue(); //valueOf(String s) Integer类的一个方法。接受一个字符串,转换返回一个整型对象。 } }

你可能感兴趣的:(String,Integer,Class)