aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes about final Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "about final" Watch "about final" New topic
Author

about final

karnatam narendraprasad
Ranch Hand

Joined: Mar 01, 2007
Posts: 30
class test
{

public static void main ( String [] args )
{
final Integer x4 = 8;
final int x = 10;

switch ( x )
{
case x4:
System.out.println("4");
break;
case x:
System.out.println("x");
break;
}
}
}

the above code will not compile.
actiualy finl values cant be changed.but it give compile time error.why
marc weber
Sheriff

Joined: Aug 31, 2004
Posts: 11343

The error message tells you "constant expression required." Constant expressions are defined under JLS 15.28 Constant Expression. Unboxed wrapper values are not included in this list.


"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: about final
 
Similar Threads
Switch statement and constant variables
final Integer reference in case statement
AutoBoxing - Compilation Error
Switch case Compiler error
Question on final