gpt4 book ai didi

java - 关于开关的问题

转载 作者:行者123 更新时间:2023-12-02 07:39:18 30 4
gpt4 key购买 nike

我是一个java初学者,那么这段代码有什么问题:

switch(keycode) {
case Keyboard.KEY_UP || Keyboard.KEY_DOWN:
}

我给出以下错误消息:

bad operand types for binary operator '||'
first type: int
second type: int

最佳答案

switch(keycode) 
{

case Keyboard.KEY_UP:
case Keyboard.KEY_DOWN:
// code to run...
break;

}

参见The switch Statement

关于java - 关于开关的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6355832/

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