标签:
1.int intValue() 以 int 类型返回该 Integer 的值。
Long l = 123;
l.intValue() ---->int : 123 2.static int parseInt(String s) 将字符串参数作为有符号的十进制整数进行解析。 3.static Integer valueOf(int i) 返回一个表示指定的 int 值的 Integer 实例。
标签:
原文地址:http://www.cnblogs.com/freed0m/p/4855022.html