
- Java.util Package Classes
- Java.util - Home
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util Package Extras
- Java.util - Interfaces
- Java.util - Exceptions
- Java.util - Enumerations
- Java.util Useful Resources
- Java.util - Useful Resources
- Java.util - Discussion
Java ArrayList set() Method
Description
The Java ArrayList set(int index, E element) replaces the element at the specified position in this list with the specified element. The size of the arraylist remains same after this operation on the arraylist.
Declaration
Following is the declaration for java.util.ArrayList.set() method
public E set(int index, E element)
Parameters
index − This is the index of the element to replace.
element − This is the element to be stored at the specified position.
Return Value
This method returns the element previously at the specified position.
Exception
IndexOutOfBoundsException − If the index is out of range
Example
The following example shows the usage of java.util.Arraylist.set() method.
Example 1
The following example shows the usage of Java ArrayList set(index, element) method. We're adding couple of Integers to the ArrayList object using add() method calls per element and using set(index, element) method, we're insert one of the element by index in between and printing it.
package com.tutorialspoint; import java.util.ArrayList; public class ArrayListDemo { public static void main(String[] args) { // create an empty array list ArrayList<Integer> arrayList = new ArrayList<>(); // use add() method to add elements in the arrayList arrayList.add(20); arrayList.add(30); arrayList.add(20); arrayList.add(30); arrayList.add(15); arrayList.add(22); arrayList.add(11); // insert an element at index 2 arrayList.set(2, 50); // let us print the 3rd element System.out.println("3rd Element = " + arrayList.get(2)); } }
Output
Let us compile and run the above program, this will produce the following result −
3rd Element = 50
Example 2
The following example shows the usage of Java ArrayList set(index, element) method. We're adding couple of Strings to the ArrayList object using add() method calls per element and using set(index, element) method, we're insert one of the element by index in between and printing it.
package com.tutorialspoint; import java.util.ArrayList; public class ArrayListDemo { public static void main(String[] args) { // create an empty array list ArrayList<String> arrayList = new ArrayList<>(); // use add() method to add elements in the arrayList arrayList.add("Welcome"); arrayList.add("To"); arrayList.add("Tutorialspoint"); // insert an element at index 2 arrayList.set(2, "World Of"); // let us print the 3rd element System.out.println("3rd Element = " + arrayList.get(2)); } }
Output
Let us compile and run the above program, this will produce the following result −
3rd Element = World Of
Example 3
The following example shows the usage of Java ArrayList set(index, element) method. We're adding couple of Student objects to the ArrayList object using add() method calls per element and using set(index, element) method, we're insert one of the element by index in between and printing it.
package com.tutorialspoint; import java.util.ArrayList; public class ArrayListDemo { public static void main(String[] args) { // create an empty arrayList ArrayList<Student> arrayList = new ArrayList<>(); // use add() method to add elements in the arrayList arrayList.add(new Student(1, "Julie")); arrayList.add(new Student(2, "Robert")); arrayList.add(new Student(3, "Adam")); // insert an element at index 2 arrayList.set(2, new Student(4, "Jene")); // let us print the 3rd element System.out.println("3rd Element = " + arrayList.get(2)); } } 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 + " ]"; } }
Output
Let us compile and run the above program, this will produce the following result −
3rd Element = [ 4, Jene ]