-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTest.java
More file actions
26 lines (22 loc) · 884 Bytes
/
Copy pathTest.java
File metadata and controls
26 lines (22 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// // // // // // // // // // // // // // // // // // // // // // // // // // //
// Copyright ownership belongs to SINOSOFT CO.,LTD.shall not be reproduced , //
// copied,or used in other ways without permission.Otherwise SINOSOFT CO.,LTD.//
// will have the right to pursue legal responsibilities. //
// //
// Copyright © 2012 SINOSOFT CO., LTD. All rights reserved. //
// // // // // // // // // // // // // // // // // // // // // // // // // // //
/**
* User: Administrator
* Date: 2014/8/21
* Time: 11:02
*/
import java.util.Date;
public class Test extends Date{
public static void main(String[] args) {
new Test().test();
}
public void test(){
System.out.println(super.getClass().getCanonicalName());
System.out.println("test 2");
}
}