gpt4 book ai didi

actionscript-3 - 开关语句和数字范围

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

您如何在 as3 中制作 switch 语句以使 case 适用于整个数字范围?

if (mcPaddle.visible == true)
{
switch (score)
{
case 10://10 to 100
myColor.color = 0x111111;
break;
case 110://110 to 1000
//etc etc
break;
}
}

我尝试了多种方法来使案例适用于 10-100 和 110-1000 之间的所有数字,但似乎无法找到一种方法,而且我找不到这种事情的正确语法在 as3.

最佳答案

您可以使用开关块:

var score:Number = 123;

switch(true){

case score > 120 && score < 125 :
trace('score > 120 && score < 125');
break;

case score > 100 && score < 140 :
trace('score > 100 && score < 140');
break;

case score == 123 :
trace('score == 123');
break;

}
//score > 120 && score < 125

关于actionscript-3 - 开关语句和数字范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5839937/

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