I'm having a bit of difficulty with some java code
class foo{
public bar() {
class innerA {}
class innerB {} // Only this one is valid because it was declare last
}
}
My Problem: Only the last declared inner class (innerB) is visible within foo::bar(). Additionally, I cannot reference either inner class from within the other. Example:
innerB{
private innerA _a; // Error
}
My Question: Is there some limit on the number of local inner classes you can have within a method? Can local inner classes instantiate other local inner class object? Should they?
EDIT: I miss-typed in my IDE and had some scoping issues... thanks again!
TIA, noob