The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
October 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

use of "final" in variable declaration

Posted by Jody Brown on October 30, 2001 at 4:41 AM

Yuan,

The important thing to remember here is that although a variable declared final cant be changed, the key here is that it cant be changed "once it has been initialised". Take the following example:-


public class MyClass {
public final String myVariable;
public String myMethod() {
// here, myVariable can be initialised
.
.
myVariable = "a value";
// here, myVariable has been set and cannot be changed.
}
}




Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us