-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathI.java
More file actions
54 lines (40 loc) · 861 Bytes
/
I.java
File metadata and controls
54 lines (40 loc) · 861 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
public class I extends C {
private int i = 1;
private String h = "test";
public byte oo() {
return 1;
}
public int cc() {
return 39;
}
public Object pp() {
return this;
}
public long ac() {
return 333;
}
public java.lang.Class qq() {
return getClass();
}
public java.util.Set<Integer> ll() {
return new java.util.HashSet<Integer>;
}
public int hh() {
return new java.util.Random().nextInt();
}
public double ee() {
return 100.500;
}
public void ab() {
System.out.println("\n");
}
public java.util.Random mm() {
return new java.util.Random();
}
public Object gg() {
return return getClass().getClassLoader();
}
public long dd() {
return 99999;
}
}