Java - Streams: Difference between revisions

From My Limbic Wiki
Line 9: Line 9:
</source>
</source>


===Sample===
===Samples===
* Print all Students name
<source lang="Java">
<source lang="Java">
Student student;
Student student;
Line 16: Line 17:
     student = (Student)(iterator.next());
     student = (Student)(iterator.next());
     System.out.println(student.getFullName());
     System.out.println(student.getFullName());
}
</source>
* Get a Student
<source lang="Java">
Student student = getNextStudent();
while (student != null) {
    collection.add(student);
}
}
</source>
</source>

Revision as of 16:55, 18 October 2019

Collections

Main Methods

<source lang="Java"> - add(Object o) //Adds the specified object to the collection. - remove(Object o) //Removes the specified object from the collection. - clear() //Removes all elements from the collection. - size() //Returns an integer that indicates how many elements are currently in the collection. - iterator() //Returns an object that can be used to retrieve references to the elements in the collection. </source>

Samples

  • Print all Students name

<source lang="Java"> Student student; Iterator iterator = collection.iterator(); while (iterator.hasNext()) {

   student = (Student)(iterator.next());
   System.out.println(student.getFullName());

} </source>

  • Get a Student

<source lang="Java"> Student student = getNextStudent(); while (student != null) {

   collection.add(student);

} </source>

A voir

  • Parallel stream