Skip to content
On this page

mxcad API 文档 / McGeDoubleArray

Class: McGeDoubleArray

整数数组

Table of contents

Constructors

Properties

Methods

Constructors

constructor

new McGeDoubleArray(imp?)

构造函数。

Parameters

NameType
imp?object

Properties

imp

imp: any

Methods

append

append(val): void

添加一个值

Parameters

NameType
valnumber

Returns

void


at

at(index): number

得到数据元素的值

Parameters

NameType
indexnumber

Returns

number


clear

clear(): void

Returns

void


copy

copy(val): McGeDoubleArray

复制对象的值

Parameters

NameType
valMcGeDoubleArray

Returns

McGeDoubleArray


forEach

forEach(call): void

遍历数组

Parameters

NameType
call(val: number, index: number) => void

Returns

void


length

length(): number

返回数组长度

Returns

number


setAt

setAt(index, val): void

设置数据元素的值

Parameters

NameType
indexnumber
valnumber

Returns

void