Get the size of a LinkedList

ReturnMethodSummary
intsize()Returns the number of elements in this list.

  import java.util.LinkedList;

public class Main{
    public static void main(String args[]) {
        LinkedList<String> ll = new LinkedList<String>();

        ll.add("A");
        ll.add("java2s.com");
        ll.add("B");
        ll.add("C");
        ll.add("java2s.com");



        System.out.println(ll.size());
    }
}
  

The output:


5
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.