File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 * @由于个人水平有限, 难免有些错误, 还请指点:
33 * @Author: cpu_code
44 * @Date: 2020-07-12 12:03:11
5- * @LastEditTime: 2020-09-16 09:16 :32
5+ * @LastEditTime: 2020-09-16 09:32 :32
66 * @FilePath: \java\README.md
77 * @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
88 * @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
@@ -226,6 +226,18 @@ java编程基础 面向对象 javaAPI 集合 IO GUI JD8C 多线程 网络编程
226226- [x] [ date9__ Calendar_add] ( javaAPI/date/date9.java )
227227- [x] [ date10__ Calendar_getTime] ( javaAPI/date/date10.java )
228228
229+ ### [ System类] ( javaAPI/system )
230+
231+ - [x] [ system1__ currentTimeMillis] ( javaAPI/system/system1.java )
232+
233+
234+
235+ ### [ StringBuilder类] ( javaAPI/stringBuilder )
236+
237+
238+ ### [ 包装类] ( javaAPI/stringBuilder )
239+
240+
229241-----------------------
230242
231243## [ 异常处理] ( Exception )
Original file line number Diff line number Diff line change 1+ /*
2+ * @由于个人水平有限, 难免有些错误, 还请指点:
3+ * @Author: cpu_code
4+ * @Date: 2020-09-16 09:33:07
5+ * @LastEditTime: 2020-09-16 09:33:59
6+ * @FilePath: \java\javaAPI\system\system1.java
7+ * @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
8+ * @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
9+ * @CSDN: [https://blog.csdn.net/qq_44226094](https://blog.csdn.net/qq_44226094)
10+ * @Gitbook: [https://923992029.gitbook.io/cpucode/](https://923992029.gitbook.io/cpucode/)
11+ */
12+ package javaAPI .system ;
13+
14+ public class system1 {
15+ public static void main (String [] args ) {
16+ //获取当前时间毫秒值
17+ System .out .println (System .currentTimeMillis ());
18+ }
19+ }
20+
21+ /*
22+ 1600220019161
23+ */
You can’t perform that action at this time.
0 commit comments