当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java LinkedList set()用法及代码示例


Java.util.LinkedList.set()方法用于将使用LinkedList类创建的链表中的任何特定元素替换为另一个元素。这可以通过在set()方法的参数中指定要替换的元素的位置和新元素来完成。

用法:

LinkedList.set(int index, Object element)

参数:该函数接受两个参数,如上面的语法所示,如下所述。


  • index:这是整数类型,是指将从链表中替换的元素的位置。
  • element:这是新元素,现有元素将被替换,并且与链接列表具有相同的对象类型。

返回值:该方法从链接列表中返回由新值替换的先前值。

以下示例程序旨在说明Java.util.LinkedList.set()方法:

// Java code to illustrate set() 
import java.io.*; 
import java.util.LinkedList; 
  
public class LinkedListDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty LinkedList 
        LinkedList<String> list = new LinkedList<String>(); 
  
        // Use add() method to add elements in the list 
        list.add("Geeks"); 
        list.add("for"); 
        list.add("Geeks"); 
        list.add("10"); 
        list.add("20"); 
  
        // Displaying the linkedlist 
        System.out.println("LinkedList:" + list); 
          
        // Using set() method to replace Geeks with GFG 
        System.out.println("The Object that is replaced is: " + list.set(2, "GFG")); 
          
        // Using set() method to replace 20 with 50 
        System.out.println("The Object that is replaced is: " + list.set(4, "50")); 
          
        // Displaying the modified linkedlist 
        System.out.println("The new LinkedList is:" + list); 
    } 
}
输出:
LinkedList:[Geeks, for, Geeks, 10, 20]
The Object that is replaced is: Geeks
The Object that is replaced is: 20
The new LinkedList is:[Geeks, for, GFG, 10, 50]


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 LinkedList set() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。