System类、BigInteger类、Decimal类、Date类、SimpleDateFormat类、Calendar类
1、System类
gc();
exit();
currentTimeMillis();
arraycopy();
2、BigInteger类
add();
subtract();
multiply();
divide();
divideAndRemainder();
3、Decimal类
add();
subtract();
multiply();
divide();
4、Date类
getTime();
setTime();
5、SimpleDateFormat类
format();
6、Calendar类
getInstance();
get();
add();
set();
某年二月份的最后一天
1 int year=2015; 2 3 Calendar cad=Calendar.getInstance(); 4 cad.set(year,2,1); 5 cad.add(Calendar.Date,-1); 6 7 System.out.println(cad.get(Calendar.Date)); 8 9 //输出28
时间: 2024-12-24 15:16:40