Java Collections list()方法与示例

集合类list()方法 (Collections Class list() method)

  • list() method is available in java.util package.

    list()方法在java.util包中可用。

  • list() method is used to return an array list that contains all the elements returned by the given Enumeration and the way of storing the elements in an ArrayList in the order as returned by the enumeration.

    list()方法用于返回一个数组列表,该列表包含给定Enumeration返回的所有元素,以及将这些元素按枚举返回的顺序存储在ArrayList中的方式。

  • list() method is a static method, so it is accessible with the class name and if we try to access the method with the class object then we will not get an error.

    list()方法是静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会收到错误。

  • list() method does not throw an exception at the time of conversion of the given Enumeration to an Arraylist.

    在将给定的枚举转换为Arraylist时, list()方法不会引发异常。

Syntax:

句法:

    public static Arraylist list(Enumeration en);

Parameter(s):

参数:

  • Enumeration en – represents the Enumeration that pass all the elements for the returned ArrayList.

    Enumeration en –表示为返回的ArrayList传递所有元素的Enumeration。

Return value:

返回值:

The return type of this method is ArrayList, it returns an ArrayList of the given Enumeration.

此方法的返回类型为ArrayList ,它返回给定Enumeration的ArrayList。

Example:

例:

// Java program is to demonstrate the example
// of ArrayList list() of Collections

import java.util.*;

public class ListOfCollections {
    public static void main(String args[]) {
        // Instantiate an ArrayList and 
        // Stack object
        List arr_l = new ArrayList();
        Stack st = new Stack();

        // By using push() method is
        // to add elements in stack
        st.push(10);
        st.push(20);
        st.push(30);
        st.push(40);
        st.push(50);

        // Get elements in an enumeration object
        Enumeration en = st.elements();

        // By using list() method is to 
        // return the array list of the 
        // given enumeration object
        arr_l = Collections.list(en);

        System.out.println("Collections.list(en): " + arr_l);
    }
}

Output

输出量

Collections.list(en): [10, 20, 30, 40, 50]


翻译自: https://www.includehelp.com/java/collections-list-method-with-example.aspx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值