64 lines
965 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
Case 1, the code is syntactically correct but the behavior is not the expected one
2020-06-30 12:47:33 +02:00
----
switch (day) {
case MONDAY:
case TUESDAY:
WEDNESDAY: // instead of "case WEDNESDAY"
doSomething();
break;
...
}
----
Case 2, the code is correct and behaves as expected but is hardly readable
2021-02-02 15:02:10 +01:00
2020-06-30 12:47:33 +02:00
----
switch (day) {
case MONDAY:
break;
case TUESDAY:
foo:for(i = 0 ; i < X ; i++) {
/* ... */
break foo; // this break statement doesn't relate to the nesting case TUESDAY
/* ... */
}
break;
/* ... */
}
----
== Compliant Solution
Case 1
2020-06-30 12:47:33 +02:00
----
switch (day) {
case MONDAY:
case TUESDAY:
case WEDNESDAY:
doSomething();
break;
...
}
----
Case 2
2020-06-30 12:47:33 +02:00
----
switch (day) {
case MONDAY:
break;
case TUESDAY:
compute(args); // put the content of the labelled "for" statement in a dedicated method
break;
/* ... */
}
----