java size of list code example

Example 1: java list length

ArrayList listOfBanks = new ArrayList<>(); 
int size = listOfBanks.size(); 
System.out.println("size of array list after creating: " + size);

Example 2: list size in java

Collection list = new ArrayList<>();
        list.size();
        
        // All collections use size()
        // array use array. length

Example 3: length of list in java

a.size() where a is list

Tags:

Misc Example