摘要:
以下纯属个人拙见,如有不妥,还望海涵 对比: 代码示例 public class Demo{ public static void main(String[] args) { Thread t = new Thread(new MyRunnable()); t.setName("t"); t.sta 阅读全文
摘要:
系统当前时间及日期格式化 代码示例: import java.text.SimpleDateFormat; import java.util.Date; public class Demo{ public static void main(String[] args) { /*系统当前时间*/ Da 阅读全文