gpt4 book ai didi

java - 在运行整个类(class)时如何跳到另一种方法?

转载 作者:行者123 更新时间:2023-12-02 01:28:48 52 4
gpt4 key购买 nike

我尝试在一个类下测试多个测试,例如我需要测试三个测试,
testA()testB()testC()

问题是,如果 testA() 执行了,是否有任何代码可以跳过 testA() 并继续 testB()测试时出错?

我尝试了system.exit(1),但它会停止整个类(class)

最佳答案

您可以使用:

try{
//if there is any error here, it will skip and will be caught by the catch block
testA()
} catch (Exception e){
//handle your exception here
testB()
}

查看:Try-catch 进行异常处理

关于java - 在运行整个类(class)时如何跳到另一种方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56440501/

52 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com