Java LinkedList - offerLast() Method
The java.util.LinkedList.offerLast() method is used to insert the specified element at the end of the list.
Syntax
public boolean offerLast(E element)
Here, E is the type of element maintained by the container.
Parameters
element |
Specify element which need to be inserted in the list. |
Return Value
true.
Exception
NA
Example:
In the example below, the java.util.LinkedList.offerLast() method is used to insert the specified element at the end of the given list.
import java.util.*; public class MyClass { public static void main(String[] args) { //creating a linkedlist LinkedList<Integer> MyList = new LinkedList<Integer>(); //populating linkedlist using offerLast method MyList.offerLast(10); MyList.offerLast(20); MyList.offerLast(30); //printing linkedlist System.out.println("MyList contains: " + MyList); } }
The output of the above code will be:
MyList contains: [10, 20, 30]
❮ Java.util - LinkedList