Java LinkedList offerLast(E) 方法



描述

Java LinkedList offerLast(E e) 方法将指定的元素 E 插入到此 linkedList 的末尾。它类似于 add() 或 addLast() 方法。

声明

以下是 java.util.LinkedList.offerLast() 方法的声明

public boolean offerLast(E e)

参数

e − 要添加到末尾的元素。

返回值

如果元素已添加到此 linkedList,则此方法返回 true,否则返回 false

异常

NullPointerException − 如果指定的元素为 null

在整数 LinkedList 的末尾插入元素的示例

以下示例演示了使用整数的 Java LinkedList offerLast(E) 方法的使用。我们使用 add() 方法向列表中添加一些元素,然后使用 offerLast() 方法在末尾添加两个元素。最后,我们打印 LinkedList 对象以查看最终结果。

package com.tutorialspoint;

import java.util.LinkedList;

public class LinkedListDemo {
   public static void main(String[] args) {

      // create an empty linkedList
      LinkedList<Integer> linkedList = new LinkedList<>();

      // use add() method to add elements in the linkedList
      linkedList.add(1);
      linkedList.add(2);
      linkedList.add(3);
      linkedList.add(4);        
      linkedList.add(5);
      linkedList.add(6);

      // the values will be printed in the same order
      linkedList.offerLast(7);
      linkedList.offerLast(8);

      // let us print all the elements available in linkedList
      System.out.println("LinkedList = " + linkedList);      
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果:

LinkedList = [1, 2, 3, 4, 5, 6, 7, 8]

在字符串 LinkedList 的末尾插入元素的示例

以下示例演示了使用字符串的 Java LinkedList offerLast(E) 方法的使用。我们使用 add() 方法向列表中添加一些元素,然后使用 offerLast() 方法在末尾添加两个元素。最后,我们打印 LinkedList 对象以查看最终结果。

package com.tutorialspoint;

import java.util.LinkedList;

public class LinkedListDemo {
   public static void main(String[] args) {

      // create an empty linkedList
      LinkedList<String> linkedList = new LinkedList<>();

      // use add() method to add elements in the linkedList
      linkedList.add("A");
      linkedList.add("B");
      linkedList.add("C");
      linkedList.add("D");        
      linkedList.add("E");
      linkedList.add("F");

      // the values will be printed in the same order
      linkedList.offerLast("G");
      linkedList.offerLast("H");

      // let us print all the elements available in linkedList
      System.out.println("LinkedList = " + linkedList);      
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果:

LinkedList = [A, B, C, D, E, F, G, H]

在对象 LinkedList 的末尾插入元素的示例

以下示例演示了使用 Student 对象的 Java LinkedList offerLast(E) 方法的使用。我们使用 add() 方法向列表中添加一些元素,然后使用 offerLast() 方法在末尾添加两个元素。最后,我们打印 LinkedList 对象以查看最终结果。

package com.tutorialspoint;

import java.util.LinkedList;

public class LinkedListDemo {
   public static void main(String[] args) {

      // create an empty linkedList
      LinkedList<Student> linkedList = new LinkedList<>();

      // use add() method to add elements in the linkedList
      linkedList.add(new Student(1, "Julie"));
      linkedList.add(new Student(2, "Robert"));
      linkedList.add(new Student(3, "Adam"));

      // use offerLast() method to add element at the end of the linkedList
      linkedList.offerLast(new Student(4, "Rohan"));
      linkedList.offerLast(new Student(5, "Sohan"));

      // let us print all the elements available in linkedList
      System.out.println("LinkedList = " + linkedList);      
   }
}

class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果:

LinkedList = [[ 1, Julie ], [ 2, Robert ], [ 3, Adam ], [ 4, Rohan ], [ 5, Sohan ]]
java_util_linkedlist.htm
广告