मैं निम्नलिखित के बिना Set
/ a पर कैसे पुनरावृति कर सकता हूं HashSet
?
Iterator iter = set.iterator();
while (iter.hasNext()) {
System.out.println(iter.next());
}
मैं निम्नलिखित के बिना Set
/ a पर कैसे पुनरावृति कर सकता हूं HashSet
?
Iterator iter = set.iterator();
while (iter.hasNext()) {
System.out.println(iter.next());
}
जवाबों:
आप पाश के लिए एक बढ़ाया का उपयोग कर सकते हैं :
Set<String> set = new HashSet<String>();
//populate set
for (String s : set) {
System.out.println(s);
}
या जावा 8 के साथ:
set.forEach(System.out::println);
सेट पर पुनरावृत्त करने के लिए कम से कम छह अतिरिक्त तरीके हैं। निम्नलिखित मेरे लिए जाने जाते हैं:
विधि 1
// Obsolete Collection
Enumeration e = new Vector(movies).elements();
while (e.hasMoreElements()) {
System.out.println(e.nextElement());
}
विधि 2
for (String movie : movies) {
System.out.println(movie);
}
विधि 3
String[] movieArray = movies.toArray(new String[movies.size()]);
for (int i = 0; i < movieArray.length; i++) {
System.out.println(movieArray[i]);
}
विधि 4
// Supported in Java 8 and above
movies.stream().forEach((movie) -> {
System.out.println(movie);
});
विधि 5
// Supported in Java 8 and above
movies.stream().forEach(movie -> System.out.println(movie));
विधि 6
// Supported in Java 8 and above
movies.stream().forEach(System.out::println);
यह HashSet
मेरे उदाहरण के लिए इस्तेमाल किया गया है:
Set<String> movies = new HashSet<>();
movies.add("Avatar");
movies.add("The Lord of the Rings");
movies.add("Titanic");
stream()
।
प्रदर्शन करने के लिए, निम्नलिखित सेट पर विचार करें, जो अलग-अलग व्यक्ति वस्तुओं को रखता है:
Set<Person> people = new HashSet<Person>();
people.add(new Person("Tharindu", 10));
people.add(new Person("Martin", 20));
people.add(new Person("Fowler", 30));
व्यक्ति मॉडल वर्ग
public class Person {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
//TODO - getters,setters ,overridden toString & compareTo methods
}
for(Person p:people){ System.out.println(p.getName()); }
people.forEach(p -> System.out.println(p.getName()));
default void forEach(Consumer<? super T> action)
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception. Unless otherwise specified by the implementing class, actions are performed in the order of iteration (if an iteration order is specified). Exceptions thrown by the action are relayed to the caller. Implementation Requirements:
The default implementation behaves as if:
for (T t : this)
action.accept(t);
Parameters: action - The action to be performed for each element
Throws: NullPointerException - if the specified action is null
Since: 1.8
आप अधिक स्वच्छ कोड के लिए कार्यात्मक संचालन का उपयोग कर सकते हैं
Set<String> set = new HashSet<String>();
set.forEach((s) -> {
System.out.println(s);
});
यहाँ कुछ युक्तियों को सेट करने के तरीके के साथ उनके प्रदर्शन के बारे में बताया गया है:
public class IterateSet {
public static void main(String[] args) {
//example Set
Set<String> set = new HashSet<>();
set.add("Jack");
set.add("John");
set.add("Joe");
set.add("Josh");
long startTime = System.nanoTime();
long endTime = System.nanoTime();
//using iterator
System.out.println("Using Iterator");
startTime = System.nanoTime();
Iterator<String> setIterator = set.iterator();
while(setIterator.hasNext()){
System.out.println(setIterator.next());
}
endTime = System.nanoTime();
long durationIterator = (endTime - startTime);
//using lambda
System.out.println("Using Lambda");
startTime = System.nanoTime();
set.forEach((s) -> System.out.println(s));
endTime = System.nanoTime();
long durationLambda = (endTime - startTime);
//using Stream API
System.out.println("Using Stream API");
startTime = System.nanoTime();
set.stream().forEach((s) -> System.out.println(s));
endTime = System.nanoTime();
long durationStreamAPI = (endTime - startTime);
//using Split Iterator (not recommended)
System.out.println("Using Split Iterator");
startTime = System.nanoTime();
Spliterator<String> splitIterator = set.spliterator();
splitIterator.forEachRemaining((s) -> System.out.println(s));
endTime = System.nanoTime();
long durationSplitIterator = (endTime - startTime);
//time calculations
System.out.println("Iterator Duration:" + durationIterator);
System.out.println("Lamda Duration:" + durationLambda);
System.out.println("Stream API:" + durationStreamAPI);
System.out.println("Split Iterator:"+ durationSplitIterator);
}
}
कोड आत्म व्याख्यात्मक है।
अवधि के परिणाम हैं:
Iterator Duration: 495287
Lambda Duration: 50207470
Stream Api: 2427392
Split Iterator: 567294
हम सबसे तेजी से सबसे Lambda
लंबे समय तक ले जाता है देख सकते हैं Iterator
।
गणन (?):
Enumeration e = new Vector(set).elements();
while (e.hasMoreElements())
{
System.out.println(e.nextElement());
}
एक और तरीका (java.util.Collections.enumeration ()):
for (Enumeration e1 = Collections.enumeration(set); e1.hasMoreElements();)
{
System.out.println(e1.nextElement());
}
जावा 8:
set.forEach(element -> System.out.println(element));
या
set.stream().forEach((elem) -> {
System.out.println(elem);
});
हालाँकि इसके लिए पहले से ही बहुत अच्छे उत्तर उपलब्ध हैं। यहाँ मेरा जवाब है:
1. set.stream().forEach(System.out::println); // It simply uses stream to display set values
2. set.forEach(System.out::println); // It uses Enhanced forEach to display set values
साथ ही, यदि यह सेट कस्टम वर्ग प्रकार का है, उदाहरण के लिए: ग्राहक।
Set<Customer> setCust = new HashSet<>();
Customer c1 = new Customer(1, "Hena", 20);
Customer c2 = new Customer(2, "Meena", 24);
Customer c3 = new Customer(3, "Rahul", 30);
setCust.add(c1);
setCust.add(c2);
setCust.add(c3);
setCust.forEach((k) -> System.out.println(k.getId()+" "+k.getName()+" "+k.getAge()));
// ग्राहक वर्ग:
class Customer{
private int id;
private String name;
private int age;
public Customer(int id,String name,int age){
this.id=id;
this.name=name;
this.age=age;
} // Getter, Setter methods are present.}