vote up 4 vote down star
1

I just had an interview where one of the questions was something like "Describe 5 ways to use the static keyword in Java." I could only think of 2 on the spot, and afterwards I found 2 more. What is the 5th?

  1. Declaring a field belonging to a class as opposed to an instance of the class.
  2. Declaring a method that can be called on a class as opposed to an instance.
  3. Declaring a nested class as static
  4. Defining a static class initializer.
  5. ???
flag
Are you sure it wasn't "final"? I use that one. :) – Jonathan Feinberg Oct 17 at 0:25
I'm thinking probably not final because I think you can use "final" independently from "static". – Sam Oct 17 at 1:19

4 Answers

vote up 12 vote down check

static import (since java 1.5):

import static my.package.MyClass.*;

link|flag
This is the one you're looking for. – Dave Ray Oct 17 at 0:24
Thank you! I saw this the day before, but I totally forgot about it. – Sam Oct 17 at 1:21
vote up -1 vote down

create a static block

static 
{

 // Do some static work 

}
link|flag
2  
same as #4 - Defining a static class initializer "block" – non sequitor Oct 17 at 3:32
vote up 1 vote down

Would declaring a static interface be considered a class in this instance? If not then there's another use.

link|flag
I think it's "Interfaces can do work" per Strange.java by Robert Sedgewick – Nicholas Jordan Oct 20 at 3:12
vote up -1 vote down

Constants - static final (which is really the same as #1, but could be consider a separate usage)

link|flag
Isn't that the same as "a field belonging to the class"? – Paul Tomblin Oct 17 at 0:13
They are the same, but maybe the interviewer considers them different when used in an interface? – Hosam Aly Oct 17 at 0:17

Your Answer

Get an OpenID
or

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