I've noticed there are some special ways to qualify an entity in Java:

Object o = new Outer().new Inner();

In this case, we are qualifying the Inner class with the Outer class, so we only need to import the Outer class:

import mypackage.Outer;

Are there any other cases like this? (That is, where an unusual qualification occurs - by unusual I mean not: fullQualifier.identifier).

I'm excluding the case of the automatic imports (java.lang, primitive types, etc.)

link|improve this question

This isn't automatic importing. import mypackage.Outer.Inner; wouldn't be valid in this case. – Oli Charlesworth Jan 16 '11 at 12:36
I didn't say I was automatically importing, but you're right. import mypackage.Outer.Inner;, although not invalid, it is marked as unused. – John Assymptoth Jan 16 '11 at 12:55
feedback

3 Answers

up vote 2 down vote accepted

I think you misunderstand the construct you've described:

Object o = new Outer().new Inner();

is actually a way to fully qualify the Inner class' constructor, just as in

Outer.Inner i = new Outer().new Inner();

On the other hand, you could write this:

import path.to.Outer;
import path.to.Outer.Inner;

// ...

Inner i = new Outer().new Inner();
link|improve this answer
You're right. I'm not fully qualifying the constructor (as I still have to import the Outer class), but I'm qualifying Inner. I only need to import Inner if I want to use it the way you use it in your last example. +1. Do you know if there are any more ways to qualify things, other than the normal name qualification? – John Assymptoth Jan 16 '11 at 12:52
@John, yes, the Java language syntax specification is very rich. E.g. you can qualify members/methods of the current type hierarchy with the this and super keywords. Then, the this keyword can be prepended with classes, narrowing the this context down to a more concrete class (useful when the Inner object wants to reference something from the Outer object, e.g. in Outer.this.blah()). For more details, check out download.oracle.com/javase/tutorial/java/javaOO/nested.html – Lukas Eder Jan 16 '11 at 12:56
I also already knew that case. Do you know if nested cases are the only ones that have special qualification? – John Assymptoth Jan 16 '11 at 13:03
But my interest is only in qualification that messes with the imports. I can't use Outer.this, if Outer is not imported. – John Assymptoth Jan 16 '11 at 13:06
Hmm, maybe if I understood why you're looking for "special cases", I could understand what you're really looking for... Or is this just a general question "out of curiousity"? Because after 5-6 years of working with Java, these things do not appear extraordinarily special to me :-) – Lukas Eder Jan 16 '11 at 13:37
show 2 more comments
feedback

Also, you wouldn't need to import a class if:

  • you use the full path to the object. For example:

    java.util.Date d = new java.util.Date();
    
  • the class is in the same package

  • the class is in the java.lang package e.g. String
link|improve this answer
Those are exactly the cases I know. :) Are there any more? But +1. – John Assymptoth Jan 16 '11 at 13:00
feedback

the outer package in this case included the inner package, thats why there was no need ti import the inner package, in most cases there is no need to import a whole package just to use one component ..for example i only want to use a String, there is no need ti import the whole java.lang. In some complicated libraries usage if you are using some IDEs they can fix the imports for you, for example in netbeans ctrl+shift+i will fix your imports

link|improve this answer
1  
Outer and Inner are classes, not packages... John is aware of "automatic" imports of the java.lang package, I think he was just a bit surprised that he didn't need to import the Inner class in the constructor syntax he was using... – Lukas Eder Jan 16 '11 at 12:41
@Lukas Eder: Exactly. – John Assymptoth Jan 16 '11 at 12:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.