Skip to content

Commit 7aadf0d

Browse files
committed
system1__currentTimeMillis
1 parent b2a8aed commit 7aadf0d

2 files changed

Lines changed: 36 additions & 1 deletion

File tree

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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)

javaAPI/system/system1.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
*/

0 commit comments

Comments
 (0)