public class testLong {
public static void main(String[] args) {
String  str = "05020221";
long l1  =Long.valueOf(str);
System.out.println(l1);
long l2 = 03020221l;
System.out.println(l2);
}}
l1 输出结果:05020221
l2 输出结果:  794769疑问:l1输出的结果第一个0跑哪去了
 l2结果为什么是794769