ArrayList set() metodas Java su pavyzdžiais
The rinkinys () metodas java.util.ArrayLis t klasė naudojama elementui nurodytoje šio sąrašo vietoje pakeisti nurodytu elementu.
Sintaksė:
public E set(int index, E element)
Parametrai: Šis metodas naudoja šį argumentą kaip parametrą.
- indeksas- elemento, pakeičiančio elementą, indeksas- elementas, kuris turi būti saugomas nurodytoje vietoje
Grąžinama vertė: Šis metodas grąžina elementas anksčiau nurodytoje vietoje.
Išimtis: Šis metodas meta IndexOutOfBoundsException jei indeksas nepatenka į ArrayList dydžio diapazoną.
Žemiau pateikiami pavyzdžiai, iliustruojantys rinkinys () metodas.
1 pavyzdys:
// Java program to demonstrate> // set() method> // for Integer value> > import> java.util.*;> > public> class> GFG1 {> > public> static> void> main(String[] argv)> throws> Exception> > {> > try> {> > > // Creating object of ArrayList> > ArrayList> > arrlist => new> ArrayList();> > > // Populating arrlist1> > arrlist.add(> 1> );> > arrlist.add(> 2> );> > arrlist.add(> 3> );> > arrlist.add(> 4> );> > arrlist.add(> 5> );> > > // print arrlist> > System.out.println(> 'Before operation: '> > + arrlist);> > > // Replacing element at the index 3 with 30> > // using method set()> > int> i = arrlist.set(> 3> ,> 30> );> > > // Print the modified arrlist> > System.out.println(> 'After operation: '> > + arrlist);> > > // Print the Replaced element> > System.out.println(> 'Replaced element: '> > + i);> > }> > > catch> (IndexOutOfBoundsException e) {> > System.out.println(> 'Exception thrown: '> > + e);> > }> > }> }> |
Išvestis:
Before operation : [1, 2, 3, 4, 5] After operation : [1, 2, 3, 30, 5] Replaced element : 4
2 pavyzdys: Dėl IndexOutOfBoundsException
// Java program to demonstrate> // set() method> // for IndexOutOfBoundsException> > import> java.util.*;> > public> class> GFG1 {> > public> static> void> main(String[] argv)> throws> Exception> > {> > try> {> > > // Creating object of ArrayList> > ArrayList> > arrlist => new> ArrayList();> > > // Populating arrlist1> > arrlist.add(> 1> );> > arrlist.add(> 2> );> > arrlist.add(> 3> );> > arrlist.add(> 4> );> > arrlist.add(> 5> );> > > // print arrlist> > System.out.println(> 'Before operation : '> > + arrlist);> > > // Replacing element at the index 7 with 30> > // using method set()> > System.out.println(> '
Trying to Replace'> > +> ' the element at'> > +> ' (index>Talpa) '> );> > int> i = arrlist.set(> 7> ,> 30> );> > > // Print the modified arrlist> > System.out.println(> 'After operation: '> > + arrlist);> > > // Print the Replaced element> > System.out.println(> 'Replaced element: '> > + i);> > }> > > catch> (IndexOutOfBoundsException e) {> > System.out.println(> 'Exception thrown : '> + e);> > }> > }> }> |
Išvestis:
Before operation : [1, 2, 3, 4, 5] Trying to Replace the element at (index>Talpa) Išimtis pateikta : java.lang.IndexOutOfBoundsException: Index: 7, Size: 5