ArrayList.Adapter(IList) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
static System::Collections::ArrayList ^ Adapter(System::Collections::IList ^ list);
public static System.Collections.ArrayList Adapter (System.Collections.IList list);
static member Adapter : System.Collections.IList -> System.Collections.ArrayList
Public Shared Function Adapter (list As IList) As ArrayList
參數
傳回
例外狀況
list
為 null
。
備註
Adapter 不會複製的內容 IList。 相反地,它只會在 周圍建立ArrayList包裝函式,因此對的變更IList也會影響 ArrayList。IList
類別 ArrayList 提供泛型 Reverse、 BinarySearch 和 Sort 方法。 此包裝函式可以是在 上使用 IList這些方法的方法;不過,透過包裝函式執行這些泛型作業可能比直接在 上套用的 IList作業更有效率。
這個方法是作業 O(1)
。