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


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


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

用法:

Object[] arr = TreeSet.toArray()

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


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

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

示例1:

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

示例2:

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


相关用法


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