hi, In round-up i saw this question: In switch stmt,argument to the case label(case:argument) can be any variable which can fit within an int. I said true, i got it wrong. The answer says: false the case argument must be either an int literal or an int -compatible variable which is a constant(i.e. static final) Thanx in advance, Best Regards, leena.
Cherry Sta. Romana
Greenhorn
Joined: Aug 08, 2001
Posts: 18
posted
0
Hi leena, I think you were just confused about the question. The question refers to the argument following the case construct not the switch. In the switch construct --> switch (expression) --> expression can be anything that is compatible to an int. On the other hand, for the case construct, it has to be an int constant. For example: int a = 5; int b = 10; switch (a*2) // this is possible, value is evaluated { case 10: // should be a constant int case b: // this is not possible since b is a var } I hope this helps.
Guy Allard
Ranch Hand
Joined: Nov 24, 2000
Posts: 776
posted
0
Also note that: final int x = 20; // OK to use 'x' in 'case' because of 'final' Regards, Guy
Gagan Indus
Ranch Hand
Joined: Feb 28, 2001
Posts: 346
posted
0
Nice explanation Cheery and Very good point Guy Allard please also note tht expressions involving final variables (along with literals only), which results in value assignable to the type of swicth-expression , can also be used as case labels
output is : Good Luck for ur exam!
even float , double final-variables can be used in the expression , but the final result has to be cast into int's ( byte , char , short , int )
still , output is : Good Luck for ur exam!
------------------ Gagan (/^_^\)
Gagan (/^_^\) SCJP2 SCWCD IBM486 <br />Die-hard JavaMonk -- little Java a day, keeps you going.<br /><a href="http://www.objectfirst.com/blog" target="_blank" rel="nofollow">My Blog</a>
leena rane
Ranch Hand
Joined: Aug 13, 2001
Posts: 280
posted
0
Thanx Cherry,Guy and Gagan 4 such nice explanation . Now the point is clear to me!! Best Regards, leena