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


Java ConcurrentSkipListSet iterator()用法及代码示例


java.util.concurrent.ConcurrentSkipListSet的iterator()方法是Java中的内置函数,用于按升序返回此集合中元素的迭代器。句法:

ConcurrentSkipListSet.iterator()  

返回值:该函数以升序返回此集合中元素的迭代器。

以下程序说明了java.util.concurrent.ConcurrentSkipListSet.iterator()的用法:
程序1:


// Java Program Demonstrate iterator() 
// method of ConcurrentSkipListSet  
  
import java.util.Iterator; 
import java.util.concurrent.ConcurrentSkipListSet; 
  
class ConcurrentSkipListSetIteratorExample1 { 
    public static void main(String[] args) 
    { 
  
        // Initializing the set 
        ConcurrentSkipListSet<String> 
            set = new ConcurrentSkipListSet<String>(); 
  
        // Adding elements to this set 
        set.add("Gfg"); 
        set.add("is"); 
        set.add("fun!!"); 
  
        // Returns an iterator over the elements 
        Iterator<String> iterator = set.iterator(); 
  
        // Printing the elements of the set 
        while (iterator.hasNext()) 
            System.out.print(iterator.next() + " "); 
    } 
}
输出:
Gfg fun!! is

程序2:

// Java Program Demonstrate iterator() 
// method of ConcurrentSkipListSet */ 
  
import java.util.Iterator; 
import java.util.concurrent.ConcurrentSkipListSet; 
  
class ConcurrentSkipListSetIteratorExample2 { 
    public static void main(String[] args) 
    { 
  
        // Initializing the set 
        ConcurrentSkipListSet<Integer> 
            set = new ConcurrentSkipListSet<Integer>(); 
  
        // Adding elements to this set 
        set.add(10); 
        set.add(15); 
        set.add(20); 
        set.add(25); 
  
        // Returns an iterator over the elements 
        Iterator<Integer> iterator = set.iterator(); 
  
        // Printing the elements of the set 
        while (iterator.hasNext()) 
            System.out.print(iterator.next() + " "); 
    } 
}
输出:
10 15 20 25

参考:https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#iterator-



相关用法


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