I have:
public class A implements BListener {
public interface AListener {}
}
public class B implements AListener {
public interface BListener {}
}
After further investigation, I was initially wrong.
The technical explanation for the behavior you are noticing is the following
From the Java Language Specification chapter on Superclasses and subclasses
A class
Cdirectly depends on a typeTifTis mentioned in theextendsorimplementsclause ofCeither as a superclass or superinterface, or as a qualifier in the fully qualified form of a superclass or superinterface name.A class
Cdepends on a reference typeTif any of the following is true:
Cdirectly depends onT.Cdirectly depends on an interfaceIthat depends (§9.1.3) onT.Cdirectly depends on a classDthat depends onT(using this definition recursively).It is a compile-time error if a class depends on itself.
Let's take your code, with fully qualified names for type uses, assuming the classes were declared in package com.example:
public class A implements com.example.B.BListener {
public interface AListener {}
}
public class B implements com.example.A.AListener {
public interface BListener {}
}
Following the rules from the JLS above
A directly depends on BListener, because it's mentioned in its implements clause.A directly depends on B, because it's mentioned as a qualifier in the fully qualified name of a superinterface (BListener is com.example.B.BListener)B directly depends on AListener, because it's mentioned in its implements clause.B directly depends on A, because it's mentioned as a qualifier in the fully qualified name of a superinterface (AListener is com.example.A.AListener)A directly depends on B that depends on A.Therefore A depends on A and a compilation error should occur.
In Eclipse, the error occurs if you qualify the names
class A implements B.BListener {
public static interface AListener {
}
}
class B implements A.AListener {
public static interface BListener {
}
}
If you use import statements, however, it doesn't. I'll be opening a bug with them.
It may help to draw it out.
>A
is part of / \ inherits
V
AListener BListener
^
inherits \ / is part of
B<
A lovely circle. You can't create one of them without the others already existing.
Is the compiler a squirrel with ADHD high on coffee chasing it's own tail?
Nope because a the squirrel would not stop (until the caffeine ran out). The compiler looks for this and then gives up.
Note: Eclipse has a bug which allows this setup.