Question: in Java, the value for a case of a switch..case structure must be a constant or a literal. Variables are not allowed, as shown below.
in Java, the value for a case of a switch..case structure must be a constant or a literal. Variables are not allowed, as shown below. In your opinion, is there a way to go around this limitation? Can you explain how?
int x=1; int y=2; switch (2) { case x: case y: } Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
