In Java, class instance variables and static variables have default values: null for all object types, false for boolean primitive and 0 for numeric primitives. But local variables inside a method have no defaults.

Consider the following code snippet:
public static void main(String[] args){
java.util.Date d;
System.out.println(d);
}
It will fail to compile with this error:
variable d might not have been initialized
System.out.println(d);
1 error
However, the following will compile and run successfully:
public static void main(String[] args){
java.util.Date d;
}
Because the rule is that all local variables must be initialized before they are first read. So it's perfectly OK to first declare a local variable without initializing it, initialize it later, and then use it:
public static void main(String[] args){
java.util.Date d;
//do more work
d = new java.util.Date();
System.out.println(d);
}
It may be an old habit from languages like C, where you need to declare all local variables at the beginning of a code block. But in Java with this rule in place, it's best to defer declaring local variables till needed.

9

View comments

  1. well this rule is most frustrating when trying to close a resource in a finally block. if I instantiate the resource inside a try, but try to close it within the finally, I get this error. if I move the instantiation outside the try, I get another error stating that a it must be within a try.

    very frustrating.

    ReplyDelete
  2. Thanks for posting this! I searched on google and this page was the first result, very good to know!

    ReplyDelete
  3. If I am declaring PI, how about that,
    Do I have to specifically mention the value of PI(If so then wt the hell is this error) which I am getting for PI

    ReplyDelete
  4. Sometimes when you use for, while, etc. to initialize you need to use for example:
    variable1 = null;
    That message will dissapear.

    ReplyDelete
  5. Thanks! About 1 hour trying to find out... and in one minute you saved me.

    ReplyDelete
  6. Thank you, that was very helpful! :D

    ReplyDelete
  7. This is actually a huge feature of Java, and you should absolutely get out of the habit of typing "=0" or "=null" when declaring variables.

    This uses branch code checking to ensure that every possible path that could get to the use of a given variable has, at some point, initialized that variable.

    If you go around setting them to 0, you will eliminate this extremely useful warning. If you are getting the warning, look at it closely to figure out if you are missing something. Sometimes you still have to initialize it, but now I never do until I'm sure that's the best way to code it.

    ReplyDelete
  8. I wrote the following code to set a variable to an unused, random value:

    // Find an empty place in tmp
    boolean foundEmptyPlace = false;
    while (!foundEmptyPlace) {
    randomNumber = randomGenerator.nextInt(tmp.length);
    if (tmp[randomNumber] == null) {
    foundEmptyPlace = true;
    }
    }
    // do something with tmp[randomNumber]

    Here I get the "might not have been initialized" error, though reasonably it must have been initialized within the while loop. My solution was to initialize randomNumber (= 0) before the loop. But, as Bill points out, this seems to be an unpreferrable habit. Can I avoid the error in a more clean and correct way?

    ReplyDelete
Labels
Archive
Popular Posts
Popular Posts
  • Two JVM options are often used to tune JVM heap size: -Xmx for maximum heap size, and -Xms for initial heap size. Here are some common mi...
  • Simple enum . The ; after the last element is optional, when this is the end of enum definition. public enum Color { WHITE, BLACK, RED, ...
  • How to set project classpath in Eclipse and NetBeans are similar: just right-click the project name, choose Properties to bring up the Prope...
  • Let's say I need to spawn multiple threads to do the work, and continue to the next step only after all of them complete. I will need t...
  • This is a sample web.xml based on Servlet 2.5 (part of Java EE 5) that declares common elements. All top-level elements are optional, and c...
  • The default string value for java enum is its face value, or the element name. However, you can customize the string value by overriding toS...
  • Prior to JDK 6, we can check if a string is empty in 2 ways: if(s != null && s.length() == 0) if(("").equals(s)) Checking ...
  • When writing javadocs, IntelliJ automatically adds a closing tag for html elements. For instance, after typing <lt>, it automaticaly a...
  • StringBuilder was introduced in JDK 1.5. What's the difference between StringBuilder and StringBuffer? According to javadoc , StringBu...
  • With array, we can easily declare and initialize it at the same time: String[] favorites = new String[] {"EJB", "JPA", ...
Loading