flash actionscript3.0组建使用
在下面的 while 循环中,continue 语句用于遇到 3 的整数倍时跳过循环体的其余部分,并跳转到循环的顶端(在该处进行条件测试):
var i:int = 0;
while (i < 10) {
if (i % 3 == 0) {
i++;
continue;
}
trace(i);
i++;
}
在 for 循环中,还可以使用 continue 语句以跳过循环体的其余部分。在下例中,如果 i % 3 等于 0,则跳过 trace(i) 语句:
for (var i:int = 0; i < 10; i++) {
if (i % 3 == 0) {
continue;
}
trace(i);
}
另请参见 do..while for for..in for each..in label while
default statement
用法
default: statements
语言版本: ActionScript 3.0
运行时版本: Flash Player 9
定义 switch 语句的默认情况。如果 switch 语句的 expression 参数不等于(使用全等运算符 [===])给定 switch 语句的 case 关键字后的任何 expression 参数,则执行这些语句。
switch 语句不需要 default case 语句。default case 语句也不一定要出现在列表的最后。如果在 switch 语句外使用 default 语句,将会产生错误,并且脚本不能编译。 参数