摘要: java.util.Date类 java.util提供了Date类来封装日期和时间。实例化Date类的两个构造函数, Date();--当前时间 Date(long millisec);--距离格林威治时间1970年1月1日millisec毫秒的时间 使用SimpleDateFormat格式化日期 阅读全文
posted @ 2018-11-10 17:15 雷神约 阅读(2645) 评论(0) 推荐(0) 编辑
摘要: public class TestSuper { public static void main(String[] args) { new ChildClass("alex", 10, 198).f(); } } class Parent { Parent() { System.out.println("father"); } ... 阅读全文
posted @ 2018-11-10 15:27 雷神约 阅读(4346) 评论(0) 推荐(0) 编辑