public static Integer valueOf(String s) throws NumberFormatException {
return new Integer(parseInt(s, 10));
}
public static int parseInt(String s) throws NumberFormatException {
return parseInt(s,10);
}
两个方法返回类型不一样
return new Integer(parseInt(s, 10));
}
public static int parseInt(String s) throws NumberFormatException {
return parseInt(s,10);
}
两个方法返回类型不一样
2017-08-16
最新回答 / include_ice
....將int类拆分为byte类了。因为int是32位,byte是8位所以要拆分为4个byte变量,所以用byte数组来装传进去的int参数,然后返回一个含有4个byte类的数组
2017-08-06