blob: d1811ce6e0e6e5bd4e5f8c5fdac8f115993142ef (
plain)
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
|
package test3;
interface InvokedIntf {
Object clone();
}
interface InvokedIntf2 extends InvokedIntf {
}
class InvokedIntf3 implements InvokedIntf2 {
public Object clone() {
try {
return super.clone();
}
catch (Exception e) {
return null;
}
}
}
public class InvokeIntf {
public int test() {
doit(new InvokedIntf3());
return 7;
}
public void doit(InvokedIntf2 ii) {
ii.clone();
ii.toString();
}
}
|