一直以为只有Java5之后才有了自动装箱拆箱,没想到在Java5之前就已经存在了AutoBox,只不过,没有让我们使用而已。哈哈,狡猾的Sun.
public class TestBean {
private int intValue;
/**
* 属性intValue的Getter方法。
*
* 创建日期:2005-9-22
* @return int
*/
public int getIntValue() {
return intValue;
}
/**
* 属性intValue的setter方法。
*
* 创建日期:2005-9-22
* @param intValue int
*/
public void setIntValue(int intValue) {
this.intValue = intValue;
}
}
public class TestMain {
public static void main(String[] args) throws Exception{
Method setMethod = TestBean.class.getDeclaredMethod("setIntValue", new Class[]{int.class});
Method getMethod = TestBean.class.getDeclaredMethod("getIntValue", new Class[0]);
TestBean bean = new TestBean();
setMethod.invoke(bean, new Object[]{new Integer(5)});
Object obj = getMethod.invoke(bean, new Object[0]);
System.out.println("掉用Get方法得回来的类型" + obj.getClass());
System.out.println("得到的值" + obj);
}
}