collection important function and imports java code example
Example 1: declaring collection java
import java.util.Collection;
import java.util.ArrayList;
Collection<Integer> fibonacci = new Arraylist<Integer>();
Example 2: what type of collections used
Depending on the data that I am working with, I use
Arrays, Lists, Sets, Maps.