Flex中Array的IndexOf 的作用示例介绍
程序员文章站
2022-06-28 14:08:06
flex中 array 的indexof 的作用
1、说明
indexof用于在索引中从小到大查找,如果查得到就返回索引值,查不到就返回-1;
2、实例
(1)设计...
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
上一篇: 网络入侵也玩双通道
推荐阅读
-
php中r rn t的区别示例介绍_PHP
-
CSS3中background-clip和background-origin的区别示例介绍
-
php中get_headers函数的作用及用法的详细介绍
-
javascript中bind函数的作用实例介绍_javascript技巧
-
js中事件的处理与浏览器对象示例介绍_javascript技巧
-
JS中数组Array的用法示例介绍_javascript技巧
-
mysql中逻辑查询处理的介绍(代码示例)
-
python中属性描述符的详细介绍(代码示例)
-
Python中浮点型的基本内容介绍(代码示例)
-
C# IDE VS2005中的Hosting Process (vshost.exe)作用介绍