How many methods does the Java built in class LinkedList have as standard?

Answer:

According to the Java 1.6 API, LinkedList has:

  • 39 methods
  • 2 constructors
  • 28 methods inherited from superclasses and interfaces
  • ** 1 from AbstractSequentialList
    • 5 from AbstractList
    • 5 from AbstractCollection
    • 7 from Object
    • 9 from List
    • 1 from Deque

Which gives it a total of 69 methods.

First answer by Moobler. Last edit by Moobler. Contributor trust: 354 [recommend contributor recommended]. Question popularity: 1 [recommend question].