當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java AbstractSequentialList set(int, Object)用法及代碼示例


Java AbstractSequentialList的set()方法用於將使用AbstractSequentialList類創建的列表中的任何特定元素替換為另一個元素。這可以通過在set()方法的參數中指定要替換的元素的位置和新元素來完成。

用法:

public E set(int index, Object element)

參數:該函數接受兩個參數,如上麵的語法所示,如下所述。


  • index:這是整數類型,是指要從列表中替換的元素的位置。
  • element:這是將替換現有元素的新元素,並且與列表具有相同的對象類型。

返回值:該方法從列表中返回被新值替換的先前值。

異常:此方法引發以下異常:

  • UnsupportedOperationException:如果此列表不支持設置操作
  • ClassCastException:如果指定元素的類阻止將其添加到此列表中
  • NullPointerException :如果指定的元素為null,並且此列表不允許為null
  • IllegalArgumentException:如果指定元素的某些屬性阻止將其添加到此列表
  • IndexOutOfBoundsException:如果索引超出範圍(索引= size())

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

範例1:

// Java code to illustrate set() 
  
import java.io.*; 
import java.util.*; 
  
public class AbstractSequentialListDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty AbstractSequentialList 
        AbstractSequentialList<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("AbstractSequentialList:"
                           + 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 AbstractSequentialList is:"
                           + list); 
    } 
}
輸出:
AbstractSequentialList:[Geeks, for, Geeks, 10, 20]
The Object that is replaced is:Geeks
The Object that is replaced is:20
The new AbstractSequentialList is:[Geeks, for, GFG, 10, 50]

範例2:演示IndexOutOfBoundException

// Java code to illustrate set() 
  
import java.io.*; 
import java.util.*; 
  
public class AbstractSequentialListDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty AbstractSequentialList 
        AbstractSequentialList<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("AbstractSequentialList:"
                           + list); 
  
        // Using set() method to replace 10th with GFG 
        // and the 10th element does not exist 
        System.out.println("Trying to replace 10th "
                           + "element with GFG"); 
  
        try { 
            list.set(10, "GFG"); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
AbstractSequentialList:[Geeks, for, Geeks, 10, 20]
Trying to replace 10th element with GFG
java.lang.IndexOutOfBoundsException:Index:10, Size:5


相關用法


注:本文由純淨天空篩選整理自Code_r大神的英文原創作品 AbstractSequentialList set(int, Object) method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。