代码:
<html> <body> <% response.sendRedirect("home/hello");return;%> </body> </html>
报错:
Unreachable code
1: <html>
2: <body>
3: <% response.sendRedirect("home/hello");return;%>
4: </body>
5: </html>
修正:
去掉return语句;
代码:
<html> <body> <% response.sendRedirect("home/hello");return;%> </body> </html>
报错:
Unreachable code
1: <html>
2: <body>
3: <% response.sendRedirect("home/hello");return;%>
4: </body>
5: </html>
修正:
去掉return语句;
转载于:https://www.cnblogs.com/itgotime/p/9880139.html