• Home
  • RSS Feed
  • Log in


Why not to initialize your local variables at declaration
Posted by Vincent Partington just before lunchtime: October 13th, 2006

In quite a few coding standards I have seen a guideline saying all local variables must be initialized at declaration. No doubt the authors were copying from, erm, inspired by Sun’s Java coding standard guideline 6.2 which says

Try to initialize local variables where they’re declared. The only reason not to initialize a variable where it’s declared is if the initial value depends on some computation occurring first.

Sounds all nice and dandy. What could be wrong with that?

Well, the result of this guideline is that a lot of developers who can’t think of a useful value to initialize their variable with decide to initialize it with null instead of leaving it unitialized. This has the nasty property of not catching a lot of NullPointerExceptions that would have resulted in a compile time error along the lines of “The local variable x may not have been initialized” if the developer had just left that variable uninitialized instead.

It’s a pity Sun recommends such silly things which were probably inspired by the C/C++ era when uninitialized variables would contain garbage. Then again, Core J2EE Patterns is still in print while nearly all of the patterns described in it are either outdated or wholly inappropiate by now. But more on that later…

Share

Filed under Java | 3 Comments »



3 Responses to “Why not to initialize your local variables at declaration”



    erozendaal Says:
    Posted at: October 13, 2006 at 3:58 pm

    To me the sun standards recommend that the declaration of a local variable should be moved to where it is first assigned (initialized). This way the variable is _always_ initialized with a correct value.

    Only if this is not possible (for example, due to some computation that cannot be extracted into a separate method) would you declare a local variable without initializing. Like you said, assigning “null” or some other random value is a bad thing in this case since the compiler is no longer able to help you avoid errors.

    Reply


    Vincent Partington Says:
    Posted at: October 13, 2006 at 4:34 pm

    Exactly. Instead of Try to initialize local variables where they\’re declared it should have said Try to declare local variables where they\’re initialized. Then the compiler could prevent a lot of these initialization problems instead of users getting an NPE at runtime.

    Regards, Vincent.

    Reply


    Thor M Says:
    Posted at: December 22, 2007 at 11:24 pm

    Consider the following code I often see:

    void ...(...)
    {
       object o = null;
       object o = DoSomething(...);
       if (object != null)
       {
          ...
       }
    }
    

    It’s a stupid double assignment. The DoSomething method assigns to variable because it always returns a value or throws an exception.
    It’s a case where the compiler could easily outwit the *programmer*.

    Reply


Leave a Reply

Click here to cancel reply.


Xebia Sites

  • Xebia Corporate
  • Xebia France
  • Xebia India
  • XebiCon 2012

Categories

  • Java (312)
  • Agile (192)
  • General (141)
  • Scrum (70)
  • Testing (65)
  • Architecture (65)
  • Performance (47)
  • Middleware (59)
    • Deployment (40)
  • Xebia Labs (41)
  • SOA (31)
  • Project Management (31)
  • Podcast (31)
  • Tools (28)
  • Uncategorized (24)
  • lean architecture (20)
  • Quality Assurance (19)
  • Articles (15)
  • Requirements Management (14)
  • Virtualization (21)

Tag Cloud

    Lean JPA implementation patterns ACT Javascript SOA Groovy Moving to India agile architectuur lean architecture Scala product owner Concurrency Control lean architectuur XML TDD Flex Architecture Agile JPA Frameworks Maven Xebia Eclipse Oracle Grails Hibernate Ajax Java Scrum Spring

Archives

  • May 2012
  • April 2012
  • March 2012
  • February 2012
  • January 2012
  • December 2011
  • November 2011
  • October 2011
  • September 2011
  • August 2011
  • July 2011
  • June 2011
Avatars by Sterling Adventures