Results 1 to 4 of 4
- 11-25-2011, 11:22 PM #1
Member
- Join Date
- Nov 2010
- Posts
- 75
- Rep Power
- 0
error when indexing an array defined as final int
i receive syntax error: insert "}" to complete the block
see:
final int SCALE = 2;
int [] scale = new int [SCALE];
scale [0] = 1;
Java Code:package ProjectTest; public class Stage { int level; int credit; final int SCALE = 2; int [] scale = new int [SCALE]; scale [0] = 1; public Stage() { this.level = 1; this.credit = 1; } public void setNextStage(int level, int credit) { this.level = level+1; this.credit = credit+1; } public int getCurrentLevel() { return this.level; } public int getCurrentCredit() { return this.scale[this.credit]; } }
-
Re: error when indexing an array defined as final int
Your problem is where your code is located. These lines are in the declaration section of your program outside of any method or constructor:
All of that code is fine except for the last one. The last line is not a variable declaration or declaration with initialization but rather an assignment without declaration, and this must be called inside of a method, constructor, or some other similar block. For instance, it would make sense to put that last line in your constructor or an initializer block.Java Code:int level; int credit; final int SCALE = 2; int [] scale = new int [SCALE]; scale [0] = 1;
- 11-25-2011, 11:47 PM #3
Member
- Join Date
- Nov 2010
- Posts
- 75
- Rep Power
- 0
Re: error when indexing an array defined as final int
thanks......
Regards
-
Similar Threads
-
Indexing an associative array
By djgovins in forum LuceneReplies: 4Last Post: 06-06-2011, 09:24 AM -
Error - message is already defined in main
By dimesnnix in forum New To JavaReplies: 4Last Post: 06-01-2011, 10:24 PM -
Error: The Type Property Already Defined
By cest.lavie16 in forum New To JavaReplies: 2Last Post: 04-19-2011, 01:32 AM -
Getting error when indexing full wwwroot site
By cincioh78 in forum LuceneReplies: 1Last Post: 04-13-2010, 05:15 PM -
[SOLVED] indexing an element in an array help!
By anthonym2121 in forum New To JavaReplies: 1Last Post: 04-03-2009, 06:21 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks