vote up 4 vote down star

I am looking for a clean and safe way to ensure tha a field of a class will never be set to null. I would like the field value to be set once in the class constructor and never modified later. I think that he readonly keyword in C# allows this. Is there a way to do the same in Java?

class foo
{

  private Object bar;

  public foo(Object pBar)
  {
    if(pBar == null)
    {
      bar = new Object();
    }
    else
    {
      bar = pBar
    }
  }

  // I DO NOT WANT ANYONE TO MODIFY THE VALUE OF bar OUT OF THE CONSTRUCTOR

}
flag

69% accept rate

5 Answers

vote up 13 vote down check

Declare bar to be final, like this:

private final Object bar;
link|flag
vote up 6 vote down

You're looking for the keyword final.

class foo
{
   private final Object bar;

   public foo(Object pBar)
   {
       //Error check so that pBar is not null
       //If it's not, set bar to pBar
       bar = pBar;
   }
}

Now bar can't be changed

link|flag
vote up 0 vote down

Shame on me. I need some vacation...

link|flag
vote up 5 vote down

Both the previous answers are correct, but pBar could still be set to null:

new foo(null);

So the ultimate answer is to use the final keyword and make sure pBar isn't null (as before):

public class Foo
{
   private final Object bar;

    public Foo(Object pBar)
    {
        if (pBar == null)
        {
           bar = new Object();
        }else{
           bar = pBar;
        }
     }
 }
link|flag
+1, but I think it would be better to throw an exception or use an assert rather than silently assign a new Object(). – Jason Day Jun 9 at 18:27
vote up 1 vote down

You want to declare the field as final, e.g.

private final Object foo;

This has the added benefit that w.r.t. concurrency the field is guaranteed to be initialized after the constructor has finished.

Note that this only prevents replacing the object by another. It doesn't prevent modifications to the object by methods of the object, e.g. setters, unlike const in C/C++.

link|flag

Your Answer

Get an OpenID
or

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