包 | com.adobe.fiber.runtime.lib |
类 | public class CollectionFunc |
继承 | CollectionFunc Object |
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
[静态]
返回数值集合的平均值。 | CollectionFunc | ||
[静态]
返回数值集合中的最大值。 | CollectionFunc | ||
[静态]
返回数值集合中的最小值。 | CollectionFunc | ||
[静态]
返回集合中所有数值的总和。 | CollectionFunc | ||
[静态]
检查集合是否包含给定项。 | CollectionFunc | ||
[静态]
返回集合的元素数量(大小)。 | CollectionFunc | ||
表示对象是否已经定义了指定的属性。 | Object | ||
[静态]
检查集合是否为空。 | CollectionFunc | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
[静态]
如果提供一个值和一个值排序列表,则返回小于该值的列表项的数目。 | CollectionFunc | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
[静态]
返回集合的大小。 | CollectionFunc | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
返回指定对象的原始值。 | Object |
方法详细信息
collectionAvg | () | 方法 |
public static function collectionAvg(c:ArrayCollection):Number
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
返回数值集合的平均值。如果集合的大小为 0,或集合为 null,则返回 0。
参数
c:ArrayCollection — 集合
|
Number — 平均值
|
collectionMax | () | 方法 |
public static function collectionMax(c:ArrayCollection):Number
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
返回数值集合中的最大值。如果集合的大小为 0,或集合为 null,则返回 0。
参数
c:ArrayCollection — 包含数值的集合
|
Number — 集合中的最大值
|
collectionMin | () | 方法 |
public static function collectionMin(c:ArrayCollection):Number
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
返回数值集合中的最小值。如果集合的大小为 0,或集合为 null,则返回 0。
参数
c:ArrayCollection — 包含数值的集合
|
Number — 集合中的最小值
|
collectionSum | () | 方法 |
public static function collectionSum(c:ArrayCollection):Number
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
返回集合中所有数值的总和。如果集合的大小为 0,或集合为 null,则返回 0。
参数
c:ArrayCollection — 集合
|
Number — 集合的总和
|
contains | () | 方法 |
public static function contains(c:ArrayCollection, item:Object):Boolean
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
运行时版本: | Flash Player 9, AIR 1.1 |
检查集合是否包含给定项。如果集合为空,则该集合中不包含项。如果项为 null 或未定义,它仍可包含在集合中。
参数
c:ArrayCollection — 集合
| |
item:Object — 要测试的对象
|
Boolean — 项包含在集合 c 中则为 true
|
count | () | 方法 |
public static function count(collection:ArrayCollection):int
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
运行时版本: | Flash Player 9, AIR 1.1 |
返回集合的元素数量(大小)。等于 sizeof。
参数
collection:ArrayCollection — 集合
|
int — 集合的大小
|
isEmpty | () | 方法 |
public static function isEmpty(collection:ArrayCollection):Boolean
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
检查集合是否为空。如果集合不存在,则为空。
参数
collection:ArrayCollection — 集合
|
Boolean — 如果集合为空,则返回 true
|
part | () | 方法 |
public static function part(value:Object, list:ArrayCollection):int
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
如果提供一个值和一个值排序列表,则返回小于该值的列表项的数目。(如果未排序,则返回由小于该值的项构成的列表前缀的长度。)
例如,如果提供集合 C,其中包含 [10, 20, 30],则调用 part(20, C) 时将返回 1,因为在该集合中只存在一个值 (10) 小于 20。
参数
value:Object — 要搜索的值
| |
list:ArrayCollection — 经过排序的集合
|
int — 列表中值小于指定值的条目的数目
|
sizeof | () | 方法 |
public static function sizeof(collection:ArrayCollection):int
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
返回集合的大小。等于 count。
参数
collection:ArrayCollection — 集合
|
int — 集合的大小
|
Tue Jun 12 2018, 11:04 AM Z