Flex에서 Array의 IndexOf 역할 예제 소개

1564 단어 ArrayIndexOf
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

좋은 웹페이지 즐겨찾기