Java Unreachable statement Abnormal;

Unreachable statement: statement out of reach;

It means your line of code can not be executed, because your last line of code already return or a cycle of death;

1, the line of code has return;

2, the line of code is a dead cycle;

Carefully check the code you will find;

Published 142 original articles · won praise 63 · views 240 000 +

Guess you like

Origin blog.csdn.net/qq_35605213/article/details/104842733