gpt4 book ai didi

java - 如何将 "throw exception"添加到此代码?

转载 作者:行者123 更新时间:2023-11-29 04:36:46 24 4
gpt4 key购买 nike

这是我的代码

 public int Test(int[]n){
if(n.length!=0){
int smallest = n[0];
for(int i = 0; i<n.length ; i++){
if(smallest > n[i]){
smallest = n[i];
return smallest;
}else{
return 0;
}
}

}

如果列表为空,我如何更改此代码以抛出异常而不是返回零?

最佳答案

您可以简单地实现您的目标:

 public int Test(int[] n) {
if (n.length != 0) {
int smallest = n[0];
for (int i = 0; i < n.length; i++) {
if (smallest > n[i]) {
smallest = n[i];
}
}
return smallest;
} else {
throw new RuntimeException("List is empty!");
}
}

关于java - 如何将 "throw exception"添加到此代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41086225/

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