like this:
import static com.showboy.Myclass;
public class Anotherclass{}
And what's the difference between "import static com.showboy.Myclass" and "import com.showboy.Myclass"?
|
|
|
See http://java.sun.com/j2se/1.5.0/docs/guide/language/static-import.html
|
|||
|
|
|
There is no difference between those two imports you state. You can, however, use the sttic import to allow unqualified access to static members of other classes. Where where I used to have to do this:
I can do this:
|
|||
|
|
|
Static import is used to import static fields / method of a class instead of:
You can write :
It is useful if you are often used a constant from another class in your code and if the static import is not ambiguous. Btw, in your example "import static org.example.Myclass;" won't work : import is for class, import static is for static members of a class. |
||||
|
|
The first should generate a compiler error since the static import only works for importing fields or member types. (assuming MyClass is not an inner class or member from showboy) I think you meant
which makes all static fields and members from MyClass available in the actual compilation unit without having to qualify them... as explained above |
|||||
|
|
The basic idea of static import is that whenever you are using a static class,a static variable or an enum,you can import them and save yourself from some typing. I will elaborate my point with example.
Same code, with static imports:
Note: static import can make your code confusing to read. |
||||
|
|