Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

how to mutate value in vector in java

To replace an element in Java Vector, 
set() method of java. util. Vector class can be used. 
The set() method takes two parameters
-the indexes of the element which has to be replaced and the new element.
 vector.set(i,value);
 
PREVIOUS NEXT
Tagged: #mutate #vector #java
ADD COMMENT
Topic
Name
3+6 =