| Author |
Array Initialization Doubt
|
Srividhya Kiran
Ranch Hand
Joined: Feb 17, 2008
Posts: 166
|
|
Hi why am I getting compilation error at line 2 and not in line1. At line 2 I am getting an error saying can't assign a value to a final variable. Thanks Srividhya
|
 |
Edwin Keeton
Ranch Hand
Joined: Jul 10, 2002
Posts: 214
|
|
|
Static means that the member variable is created and initialized when the class is loaded by the Java interpreter. Final means that the value cannot be changed after it is initialized. The static initialization block in line 1 is called when the class is loaded. The class has already been loaded by the timeLine 2 attempts to initialize the array in a method, and therefore is illegal to attempt to change the value of the final variable.
|
SCJP, SCWCD
|
 |
 |
|
|
subject: Array Initialization Doubt
|
|
|