nsIMutableArray 编辑

xpcom/ds/nsIMutableArray.idlScriptable This interface is a subclass of nsIArray that provides arrays that are mutable; that is, they can be altered programmatically. Inherits from: nsIArray Last changed in Gecko 1.8 (Firefox 1.5 / Thunderbird 1.5 / SeaMonkey 1.0)

Consumers of nsIArray should not QueryInterface to nsIMutableArray unless they own the array.

As above, it is legal to add null elements to the array. Note also that null elements can be created as a side effect of insertElementAt(). Conversely, if insertElementAt() is never used, and null elements are never explicitly added to the array, then it is guaranteed that nsIArray.queryElementAt() will never return a null value.

Any of these methods may throw NS_ERROR_OUT_OF_MEMORY when the array must grow to complete the call, but the allocation fails.

Method overview

void appendElement(in nsISupports element, in boolean weak);
void clear();
void insertElementAt(in nsISupports element, in unsigned long index, in boolean weak);
void removeElementAt(in unsigned long index);
void replaceElementAt(in nsISupports element, in unsigned long index, in boolean weak);

Methods

appendElement()

Append an element at the end of the array.

void appendElement(
  in nsISupports element,
  in boolean weak
);
Parameters
element
The element to append.
weak
Whether or not to store the element using a weak reference.
Exceptions thrown
NS_ERROR_FAILURE
When a weak reference is requested, but the element does not support nsIWeakReference.

clear()

Clear the entire array, releasing all stored objects.

void clear();
Parameters

None.

insertElementAt()

Insert an element at the given position, moving the element currently located in that position, and all elements in higher position, up by one.

void insertElementAt(
  in nsISupports element,
  in unsigned long index,
  in boolean weak
);
Parameters
element
The element to insert.
index
The position in the array: If the position is lower than the current length of the array, the elements at that position and onwards are bumped one position up. If the position is equal to the current length of the array, the new element is appended. An index lower than 0 or higher than the current length of the array is invalid and will be ignored.
weak
Whether or not to store the element using a weak reference.
Exceptions thrown
NS_ERROR_FAILURE
When a weak reference is requested, but the element does not support nsIWeakReference.

removeElementAt()

Remove an element at a specific position, moving all elements stored at a higher position down one. To remove a specific element, use nsIArray.indexOf() to find the index first, then call removeElementAt.

void removeElementAt(
  in unsigned long index
);
Parameters
index
The position of the item.

replaceElementAt()

Replace the element at the given position.

void replaceElementAt(
  in nsISupports element,
  in unsigned long index,
  in boolean weak
);
Parameters
element
The new element to insert.
index
The position in the array. If the position is lower than the current length of the array, an existing element will be replaced. If the position is equal to the current length of the array, the new element is appended. If the position is higher than the current length of the array, empty elements are appended followed by the new element at the specified position. An index lower than 0 is invalid and will be ignored.
weak
Whether or not to store the new element using a weak reference.
Exceptions thrown
NS_ERROR_FAILURE
When a weak reference is requested, but the element does not support nsIWeakReference.

See Also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:98 次

字数:7271

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文