我需要从一个方法中存在,我该如何在Java中实现呢?
void print(){
try{
coding...
//I need to exist from the print method here.
}catch(){}
}
答案 0 :(得分:5)
使用不带返回值的return
语句:
void print(){
try{
coding...
return;
}catch(){}
}