常见对象_Integer的构造方法

package cn.itcast_02;

/*
 * Integer的构造方法:
 * 		public Integer(int value)
 * 		public Integer(String s)
 * 
 * 注意:这个字符串必须是由数字字符组成的
 */
public class IntegerDemo {
	public static void main(String[] args) {
		// 方式1
		int i = 100;
		Integer ii = new Integer(i);
		System.out.println("ii:" + ii);

		// 方式2
		String s = "100";
		// NumberFormatException
		// String s = "abc";
		Integer iii = new Integer(s);
		System.out.println("iii:" + iii);
	}
}

你可能感兴趣的:(Java,常见对象,Integer)