如何在java中打破void方法

时间:2015-06-30 06:21:46

标签: java try-catch

我需要从一个方法中存在,我该如何在Java中实现呢?

void print(){
    try{
        coding...
    //I need to exist from the print method here.
    }catch(){}
}

1 个答案:

答案 0 :(得分:5)

使用不带返回值的return语句:

void print(){
    try{
        coding...
        return;
    }catch(){}
}