gpt4 book ai didi

Java:我在 Java 代码中有 try、catch 和 finally,我想在 try 或 catch block 最终不执行之后

转载 作者:行者123 更新时间:2023-11-29 04:02:28 25 4
gpt4 key购买 nike

我有以下代码

public class TEST
{
public static void main(String arg[]){
try
{
System.out.println("execute try");
//what should I write hear that finally does not run.
}
catch (Exception e){
System.out.println(e);
}
finally{
System.out.println("execute finally");
}
}
}

最后不运行的try或者catch block 应该写什么。有什么想法吗?

最佳答案

System.exit(0);

关于Java:我在 Java 代码中有 try、catch 和 finally,我想在 try 或 catch block 最终不执行之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2559108/

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