list クラス : Find(class) メソッド

説明

値として一致する最初の子をproxyに格納して返します。

構文

listInstance.Find(class searchInstance)

引数

クラス名前説明
classsearchInstance値として検索するインスタンス。

返り値

クラス説明
proxy値として一致した子要素を持つproxy。

サンプルコード

1:

list{string} stringList = new list{string}();

2:

stringList.Add("a");

3:

stringList.Add("b");

4:

stringList.Add("a");

5:

proxy resultProxy = stringList.Find("a"); // 結果(resultProxy)は、listの最初の子要素を持っています。

注意

このメソッドは、値として一致する最初の子自体を返します。

値として一致する要素が無い場合は、空のproxyを返します。

引数は、int、long、real、string、またはboolでなければなりません。 他のタイプでは意味がありません。

このメソッドは、リストの先頭から検索します。

参照リンク

無し

Copyright © Rice All rights reserved.