码迷,mamicode.com
首页 > 其他好文 > 详细

Flex中 Array 的IndexOf 的作用

时间:2014-10-02 21:51:03      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   strong   sp   div   art   c   

Flex中 Array 的IndexOf 的作用


1、说明

   indexOf用于在索引中从小到大查找,假设查得到就返回索引值,查不到就返回-1;


2、实例

(1)设计源代码

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
			   xmlns:s="library://ns.adobe.com/flex/spark" 
			   xmlns:mx="library://ns.adobe.com/flex/mx" 
			   width="100%" height="100%" creationComplete="creationHandler(event)">
	<s:layout>
		<s:BasicLayout/>
	</s:layout>
	<fx:Script>
		<![CDATA[
			import mx.events.FlexEvent;

			/**
			 * 初始化函数
			 * indexOf用于在索引中从小到大查找
			 * 假设查得到就返回索引值,查不到就返回-1
			 */
			protected function creationHandler(event:FlexEvent):void
			{
				var array:Array = ["桃树","梨树","松树","樟树"];
				if(array.indexOf("梨树") != -1)
				{
					trace("按索引从小到大查:"+array.indexOf("梨树"));
				}
				if(array.indexOf("樟树",3) != -1)
				{
					trace("从第三个元素開始,按索引从小到大查:"+array.indexOf("樟树",3));
				}
			}

		]]>
	</fx:Script>
	<fx:Declarations>
		<!-- 将非可视元素(比如服务、值对象)放在此处 -->
	</fx:Declarations>
</s:Application>

(2)执行结果

    按索引从小到大查:1
    从第三个元素開始,按索引从小到大查:3

Flex中 Array 的IndexOf 的作用

标签:style   http   io   ar   strong   sp   div   art   c   

原文地址:http://www.cnblogs.com/lcchuguo/p/4004379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!