62,630
社区成员
发帖
与我相关
我的任务
分享Date d = new Date();
System.out.printf("%tF %tT\n", d, d);class MyDate extends Date {
public MyDate() {super();}
public String toString() {
return String.format("%tF %tT", this, this);
}
}
Date d = new Mydate();
System.out.println(d);