62,621
社区成员
发帖
与我相关
我的任务
分享
_random:try {
} catch (Exception e) {
// TODO: handle exception
}
l:
try{
//连接网络
}catch(Exception e){
//连接出现异常,需要重新连接
break l;
}
for (int j = 0; j < 2; j++)
{
lab1:
{
System.out.println("aaa");
for (int i = 0; i < 5; i++)
{
System.out.println(i);
if (i == 2)
{
break lab1;
}
}
System.out.println("bb");
}
}
protected transient TreeSet seconds;