Here you can find that at its initial phases Java provided the goto
instruction. Wisely, this instruction is not longer implemented. Nevertheless, as I discovered few minutes ago in other SO question, labels do still exist.
int x;
letsassign: x = 3;
I wonder why they are still there. What other uses do labels have apart from goto label
?