ActionScript 3.0 Step By Step系列(三):学学流程控制,编编if-else & switch & while & for
2009-01-14 11:55:33 来源:WEB开发网1 //do--while循环语句
2 vari:int=10;
3 varsum:int=0;
4 do{
5 sum+=i;
6 i--;
7 }while(i!=0);
8 Alert.show(sum.toString());
9
10 //while循环语句
11 vari:int=10;
12 varsum:int=0;
13 while(i!=0){
14 sum+=i;
15 i--;
16 }
17 Alert.show(sum.toString());
18
19 //for循环语句
20 varsum:int=0;
21 for(vari:int=1;i<=10;i++){
22 sum+=i;
23 }
24 Alert.show(sum.toString());
除了上面这几种循环语句的使用方式外,在ActionScript 3.0中对于for循环来说还有另外两种使用方式,他们分别是for--in和for each语句。使用都很简单,如下代码示例:
1 varemployee:Object=newObject();
2 employee.Name="Beniao";
3 employee.Sex="男";
4 employee.Email="beniao123@163.com";
5 employee.Address="中国·重庆";
6
7 vartemp:String="";
8 for(varemp:Stringinemployee){
9 temp+=employee[emp]+"n";
10 }
11 Alert.show(temp);
下面是for each()循环语句的使用方式:
1 varbooks:Array=newArray("IBM","APPLE","SUN","ADOBE");
2 foreach(vars:Stringinbooks){
3 Alert.show(s);
4 }
Tags:ActionScript Step By
编辑录入:爽爽 [复制链接] [打 印]- ››ActionScript 2.0中的! 逻辑 NOT 运算符
- ››ActionScript 3.0 性能方面优化小知识整理收集
- ››ActionScript中文本字段的透明度缓动
- ››ActionScript 3.0 Step By Step系列(一):工欲其善...
- ››ActionScript 3.0 Step By Step系列(二):建立扎实...
- ››ActionScript 3.0 Step By Step系列(三):学学流程...
- ››ActionScript 3.0 Step By Step系列(四):来自面向...
- ››ActionScript 3.0 Step By Step系列(五):走在面向...
- ››ActionScript 3.0 Step By Step系列(六):学对象事...
- ››ActionScript 3.0 Step By Step系列(七):使用XML...
- ››ActionScript 3.0 Step By Step系列(八):动态的数...
- ››ActionScript 3.0 Step By Step系列(九):使用样式...
- 中查找“ActionScript 3.0 Step By Step系列(三):学学流程控制,编编if-else & switch & while & for”更多相关内容
- 中查找“ActionScript 3.0 Step By Step系列(三):学学流程控制,编编if-else & switch & while & for”更多相关内容
- 上一篇:ActionScript 3.0 Step By Step系列(四):来自面向对象开发之前的呐喊:“学会写可重用的代码”
- 下一篇:ActionScript 3.0 Step By Step系列(二):建立扎实的ActionScript 3.0语法基础
更多精彩
赞助商链接