在JAVA中嵌套if else vs switch

时间:2018-05-10 09:00:24

标签: java oop

我正在尝试使用最佳方式(性能明智)实现简单逻辑以下的实现,在这种情况下使用切换if else语句我是否会获得优势。 (我在这里经历了一些类似的问题,发现多态性可以在这样的情况下使用但我找不到应用它的方法,因为我是OOP的新手)

谢谢!

 status = statusCheck();

if(status == done){
    // done
} else if (status == fail){
    // fail
} else if (status == processing){

    thread.sleep();
    status = statusCheck();

    if(status == done){
        // done
    } else if (status == fail){
        // fail
    } else {
        //do somthing
    }
}

0 个答案:

没有答案