文章列表
java.util.Date
为什么有的函数被deprecated了,有的没有?(强调是求真正的解析答案)
@Deprecated
public Date(int year, int month, int date) {
this(year, month, date, 0, 0, 0);
}
@Deprecated
public int getDate() {
return normalize().getDayOfMonth();
}
public long getTime() {
re ...