-
eliminar (índice int)
El método java.util.vector .remove( int index ) se utiliza para eliminar un elemento de un Vector desde una posición o índice específico.
Sintaxis:
Vector.remove(int index)
Parámetros: este método acepta un índice de parámetro obligatorio que es de tipo de datos entero y especifica la posición del elemento que se eliminará del Vector.
Valor devuelto: este método devuelve el elemento que se acaba de eliminar del vector.
El siguiente programa ilustra el método Java.util.Vector.remove(int index):
// Java code to illustrate remove() when position of
// element is passed as parameter
import
java.util.*;
public
class
VectorDemo {
public
static
void
main(String args[])
{
// Creating an empty Vector
Vector<String> vec_tor =
new
Vector<String>();
// Use add() method to add elements in the Vector
vec_tor.add(
"Geeks"
);
vec_tor.add(
"for"
);
vec_tor.add(
"Geeks"
);
vec_tor.add(
"10"
);
vec_tor.add(
"20"
);
// Output the Vector
System.out.println(
"Vector: "
+ vec_tor);
// Remove the element using remove()
String rem_ele = vec_tor.remove(
4
);
// Print the removed element
System.out.println(
"Removed element: "
+ rem_ele);
// Print the final Vector
System.out.println(
"Final Vector: "
+ vec_tor);
}
}
Producción:Vector: [Geeks, for, Geeks, 10, 20] Removed element: 20 Final Vector: [Geeks, for, Geeks, 10]
-
quitar(Objeto o)
El método java.util.vector .remove( Object o ) se usa para eliminar cualquier elemento particular del Vector.
Sintaxis:
Vector.remove(Object o)
Parámetros: este método acepta un parámetro obligatorio o es del tipo de objeto Vector y especifica el elemento que se eliminará del Vector.
Valor devuelto: Devuelve True si el elemento especificado se encuentra y se elimina del Vector, de lo contrario, False .
El siguiente programa ilustra el método Java.util.Vector.remove(Object O):
// Java code to illustrate remove() method
import
java.util.*;
public
class
VectorDemo {
public
static
void
main(String args[])
{
// Creating an empty Vector
Vector<String> vec_tor =
new
Vector<String>();
// Use add() method to add elements in the Vector
vec_tor.add(
"Geeks"
);
vec_tor.add(
"for"
);
vec_tor.add(
"Geeks"
);
vec_tor.add(
"10"
);
vec_tor.add(
"20"
);
// Output the Vector
System.out.println(
"Vector: "
+ vec_tor);
// Remove the head using remove()
Boolean rem_ele;
rem_ele = vec_tor.remove(
"Geeks"
);
// Print the removed element
if
(rem_ele)
System.out.println(
"Geeks"
+
" found and removed."
);
else
System.out.println(
"Geeks"
+
" not found or removed."
);
rem_ele = vec_tor.remove(
"500"
);
// Print the removed element
if
(rem_ele)
System.out.println(
"500"
+
" found and removed."
);
else
System.out.println(
"500"
+
" not found or removed."
);
// Print the final Vector
System.out.println(
"Final Vector: "
+ vec_tor);
}
}
Producción:Vector: [Geeks, for, Geeks, 10, 20] Geeks found and removed. 500 not found or removed. Final Vector: [for, Geeks, 10, 20]
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA