Why is this valid?
Foo.java
public class Foo {
public Bar getBar() {
return new Bar();
}
private class Bar {}
}
If Bar is private, how will users of this class use this method? Polymorphism can be used of course, but shouldn't this be invalid and the declaration should indicate this as returning an Object?
I've just been doing a bit of research on this and have not been able to find a definitive answer. It seems most likely that it is just an oversight on the part of the Java language designers and since it doesn't actually do any harm it has been left. It's no different really from putting a
public
method into aprivate
class. Nothing stops you doing this, even though there is no way to actually access thatpublic
method.Certainly NetBeans gives you the warning "Exporting non-public type through public API" when you try to do this. I expect most other environments will give a similar warning.
The returned object is entirely useless to anyone who tries to use it (unless they use reflection), pretty much all they can do is store it into an
Object
(or any other super class that they do have access to) and then pass thatObject
around.You could potentially want to do this if the passed
Object
is being used as a "handle" that gets passed around but never operated on. In that case though it would still make much more sense to have the classpublic
but make all the methods within itprivate
to prevent them being acted on outside your class (or define apublic
interface to return and have theprivate
class implement that).So the answer seems to be:
It probably shouldn't be valid, but as it doesn't do any harm it has never been blocked.
There is a good answer here on a similar subject:
Exporting non-public type through public API