LinkedList getFirst()方法 (LinkedList getFirst() method)
This method is available in package java.util.LinkedList.
軟件包java.util.LinkedList中提供了此方法。
This method is used to return the first or initial or beginning element of the linked list.
此方法用于返回鏈表的第一個,初始或開始元素。
Syntax:
句法:
Object getFirst(){
}
Parameter(s):
參數:
In this method, we don’t pass any object as a parameter in the method but it returns the first object from the linked list.
在此方法中,我們不會在該方法中傳遞任何對象作為參數,但是它將返回鏈表中的第一個對象。
Return value:
返回值:
The return type of this method is not void that means this method returns object or element (i.e. It returns the only first element in the list).
此方法的返回類型不是void,這意味著此方法返回對象或元素(即,它返回列表中唯一的第一個元素)。
If the list is empty then it gives exception NoSuchElementException.
如果列表為空,則給出異常NoSuchElementException 。
Java程序演示LinkedList getFirst()方法的示例 (Java program to demonstrate example of LinkedList getFirst() method)
import java.util.LinkedList;
public class LinkList {
public static void main(String[] args) {
LinkedList list = new LinkedList();
// use add() method to add elements in the list
list.add(10);
list.add(20);
list.add(30);
list.add(40);
list.add(50);
// Current list Output
System.out.println("The Current list is:" + list);
// Return first element from the list
System.out.println("The First Element From The List is:" + list.getFirst());
}
}
Output
輸出量
D:\Programs>javac LinkList.java
D:\Programs>java LinkList
The Current list is:[10, 20, 30, 40, 50]
The First Element From The List is: 10
翻譯自: https://www.includehelp.com/java/linkedlist-getfirst-method-with-example.aspx