gpt4 book ai didi

java - 如何比较java中case语句中的值范围?

转载 作者:行者123 更新时间:2023-12-02 05:02:42 25 4
gpt4 key购买 nike

i小于5时,我想使用相同的case语句。但它不起作用。给我一个错误,不兼容的类型: boolean 值无法转换为 int

class temp{
public static void main(String args[]){
int i=1;
switch(i){
case i < 5 :
System.out.println("Works");
}
}
}

请帮我解决这个问题。

最佳答案

您不能对 case 使用 boolean 值。声明i < 5返回 TrueFalse 。您应该使用if相反。

class temp{
public static void main(String args){
int i=1;
if (i < 5)
System.out.println("Works");
}
}

关于java - 如何比较java中case语句中的值范围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28093940/

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