Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade For Teachers Spaces Get Certified Upgrade For Teachers Spaces
   ❮     
     ❯   

Java Tutorial

Java HOMEJava IntroJava Get StartedJava SyntaxJava OutputJava CommentsJava VariablesJava Data TypesJava Type CastingJava OperatorsJava StringsJava MathJava BooleansJava If...ElseJava SwitchJava While LoopJava For LoopJava Break/ContinueJava Arrays

Java Methods

Java MethodsJava Method ParametersJava Method OverloadingJava ScopeJava Recursion

Java Classes

Java OOPJava Classes/ObjectsJava Class AttributesJava Class MethodsJava ConstructorsJava this KeywordJava ModifiersJava EncapsulationJava Packages / APIJava InheritanceJava PolymorphismJava super KeywordJava Inner ClassesJava AbstractionJava InterfaceJava AnonymousJava EnumJava User InputJava Date

Java Errors

Java ErrorsJava DebuggingJava ExceptionsJava Multiple ExceptionsJava try-with-resources

Java File Handling

Java FilesJava Create FilesJava Write FilesJava Read FilesJava Delete Files

Java I/O Streams

Java I/O StreamsJava FileInputStreamJava FileOutputStreamJava BufferedReaderJava BufferedWriter

Java Data Structures

Java Data StructuresJava CollectionsJava ListJava ArrayListJava LinkedListJava List SortingJava SetJava HashSetJava TreeSetJava LinkedHashSetJava MapJava HashMapJava TreeMapJava LinkedHashMapJava IteratorJava Algorithms

Java Advanced

Java Wrapper ClassesJava GenericsJava AnnotationsJava RegExJava ThreadsJava LambdaJava Advanced Sorting

Java Projects

Java Projects

Java How To's

Java How Tos

Java Reference

Java ReferenceJava KeywordsJava String MethodsJava Math MethodsJava Output MethodsJava Arrays MethodsJava ArrayList MethodsJava LinkedList MethodsJava HashMap MethodsJava Scanner MethodsJava File MethodsJava FileInputStreamJava FileOutputStreamJava BufferedReaderJava BufferedWriterJava Iterator MethodsJava Collections MethodsJava System MethodsJava Errors & Exceptions

Java Examples

Java ExamplesJava CompilerJava ExercisesJava QuizJava ServerJava SyllabusJava Study PlanJava Interview Q&AJava Certificate


JavaLinkedList


Java LinkedList

In the previous chapter, you learned about theArrayList class. TheLinkedList class is almost identical to theArrayList:

Example

// Import the LinkedList classimport java.util.LinkedList;public class Main {  public static void main(String[] args) {    LinkedList<String> cars = new LinkedList<String>();    cars.add("Volvo");    cars.add("BMW");    cars.add("Ford");    cars.add("Mazda");    System.out.println(cars);  }}

Try it Yourself »


ArrayList vs. LinkedList

TheLinkedList class is a collection which can contain many objects of the same type,just like theArrayList.

TheLinkedList class has the same methods asArrayList because both follow theList interface.This means you can add, change, remove, or clear elements in aLinkedList just like you would with anArrayList.

However, while theArrayList class and theLinkedList class can be used in the same way,they are built very differently.

How the ArrayList works

TheArrayList class has a regular array inside it. When an element is added, it is placedinto the array. If the array is not big enough, a new, larger array is created to replace theold one and the old one is removed.

How the LinkedList works

TheLinkedList stores its elements in "containers." The list has a link to the first containerand each container has a link to the next container in the list. To add an element to the list,the element is placed into a new container and that container is linked to one of the othercontainers in the list.

When To Use

Use anArrayList for storing and accessing data, andLinkedList to manipulate data.


LinkedList Methods

For many cases, theArrayList is more efficient as it is common to need access torandom elements in the list, but theLinkedList provides several methods to do certainoperations more efficiently:

MethodDescriptionTry it
addFirst()Adds an element to the beginning of the listTry it »
addLast()Add an element to the end of the listTry it »
removeFirst()Remove an element from the beginning of the listTry it »
removeLast()Remove an element from the end of the listTry it »
getFirst()Get the element at the beginning of the listTry it »
getLast()Get the element at the end of the listTry it »

The var Keyword

From Java 10, you can use thevar keyword to declare aLinkedList variable without writing the type twice. The compiler figures out the type from the value you assign.

This makes code shorter,but many developers still use the full type for clarity. Sincevar is valid Java, you may see it in other code, so it's good to know that it exists:

Example

// Without varLinkedList<String> cars = new LinkedList<String>();// With varvar cars = new LinkedList<String>();

Try it Yourself »


The List Interface

Note: Sometimes you will see bothList andLinkedList in Java code, like this:

import java.util.List;import java.util.LinkedList;List<String> cars = new LinkedList<>();

Try it Yourself »

This means the variable (cars) is declared as aList (the interface), but it stores aLinkedList object (the actual list). SinceLinkedList implements theList interface, this is possible.

It works the same way, but some developers prefer this style because it gives them more flexibility to change the type later.


Complete LinkedList Reference

For a complete reference of LinkedList methods, go to ourJava LinkedList Reference.





×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp