2015-09-07 11:44:36 -06:00
|
|
|
// interfaces/InterfaceCollision.java
|
2015-12-15 11:47:04 -08:00
|
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
2015-11-15 15:51:35 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
2016-09-23 13:23:35 -06:00
|
|
|
// Visit http://OnJava8.com for more book information.
|
2015-06-15 17:47:35 -07:00
|
|
|
|
|
|
|
interface I1 { void f(); }
|
|
|
|
interface I2 { int f(int i); }
|
|
|
|
interface I3 { int f(); }
|
|
|
|
class C { public int f() { return 1; } }
|
|
|
|
|
|
|
|
class C2 implements I1, I2 {
|
|
|
|
@Override
|
|
|
|
public void f() {}
|
|
|
|
@Override
|
|
|
|
public int f(int i) { return 1; } // overloaded
|
|
|
|
}
|
|
|
|
|
|
|
|
class C3 extends C implements I2 {
|
|
|
|
@Override
|
|
|
|
public int f(int i) { return 1; } // overloaded
|
|
|
|
}
|
|
|
|
|
|
|
|
class C4 extends C implements I3 {
|
|
|
|
// Identical, no problem:
|
|
|
|
@Override
|
|
|
|
public int f() { return 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Methods differ only by return type:
|
2015-12-18 11:28:19 -08:00
|
|
|
//- class C5 extends C implements I1 {}
|
|
|
|
//- interface I4 extends I1, I3 {}
|