Skip to main content Link Menu Expand (external link) Document Search Copy Copied

int size()

Returns the number of elements in the list

Returns

The number of elements in the list

Example

LinkedList<int> list = {3, 4, 5, 6};
list.size();
//returns 4