|
GOTO changed to loop,
This seems to be very problematic ...
goto is a statement jump,
There is no way for loops to achieve jumps ...
Even break can only end the loop,
It's impossible to skip the statements after the loop ...
However, the specific situation is analyzed specifically,
In some special cases,
It is possible to eliminate goto ... |
|