当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Set toArray()用法及代码示例


Java Set的toArray()方法用于生成与Set元素相同的元素的数组。本质上,它将所有元素从Set复制到新数组。

用法:

Object[] toArray()

参数:该方法不带任何参数。


返回值:该方法返回一个数组,其中包含与Set类似的元素。

以下示例程序旨在说明Set.toArray()方法:

示例1:

// Java code to illustrate toArray() 
  
import java.util.*; 
  
public class SetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Set 
        Set<String> abs_col = new HashSet<String>(); 
  
        // Use add() method to add 
        // elements into the Set 
        abs_col.add("Welcome"); 
        abs_col.add("To"); 
        abs_col.add("Geeks"); 
        abs_col.add("For"); 
        abs_col.add("Geeks"); 
  
        // Displaying the Set 
        System.out.println("The Set: "
                           + abs_col); 
  
        // Creating the array and using toArray() 
        Object[] arr = abs_col.toArray(); 
  
        System.out.println("The array is:"); 
        for (int j = 0; j < arr.length; j++) 
            System.out.println(arr[j]); 
    } 
}
输出:
The Set: [Geeks, For, Welcome, To]
The array is:
Geeks
For
Welcome
To

示例2:

// Java code to illustrate toArray() 
  
import java.util.*; 
  
public class SetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Set 
        Set<Integer> abs_col = new HashSet<Integer>(); 
  
        // Use add() method to add 
        // elements into the Set 
        abs_col.add(10); 
        abs_col.add(15); 
        abs_col.add(30); 
        abs_col.add(20); 
        abs_col.add(5); 
        abs_col.add(25); 
  
        // Displaying the Set 
        System.out.println("The Set: " + abs_col); 
  
        // Creating the array and using toArray() 
        Object[] arr = abs_col.toArray(); 
  
        System.out.println("The array is:"); 
        for (int j = 0; j < arr.length; j++) 
            System.out.println(arr[j]); 
    } 
}
输出:
The Set: [20, 5, 25, 10, 30, 15]
The array is:
20
5
25
10
30
15

参考: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#toArray()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Set toArray() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。