Found 9150 Articles for Object Oriented Programming

Replace an element at a specified index of the Vector in Java

Vikyath Ram
Updated on 30-Jul-2019 22:30:24

652 Views

An element in a Vector can be replaced at a specified index using the java.util.Vector.set() method. This method has two parameters i.e the index at which the Vector element is to be replaced and the element that it should be replaced with. Vector.set() method returns the element that was at the position specified at the index previously.A program that demonstrates this is given as follows:Example Live Demoimport java.util.Vector; public class Demo { public static void main(String args[]) { Vector vec = new Vector(5); vec.add(7); ... Read More

Removing Single Elements in a Vector in Java

Rishi Raj
Updated on 30-Jul-2019 22:30:24

167 Views

A single element in the Vector can be removed using the java.util.Vector.remove() method. This method removes the element at the specified index in the Vector. It returns the element that was removed. Also after the element is removed from the specified index, the rest of the Vector elements are shifted to the left.A program that demonstrates this is given as follows:Example Live Demoimport java.util.Vector; public class Demo { public static void main(String args[]) { Vector vec = new Vector(5); vec.add(4); ... Read More

Clear out all of the Vector elements in Java

Jai Janardhan
Updated on 30-Jun-2020 08:03:52

442 Views

A Vector can be cleared in Java using the method java.util.Vector.clear(). This method removes all the elements in the Vector. There are no parameters required by the Vector.clear() method and it returns no value.A program that demonstrates this is given as follows −Example Live Demoimport java.util.Vector; public class Demo {    public static void main(String args[]) {       Vector vec = new Vector(5);       vec.add(4);       vec.add(1);       vec.add(3);       vec.add(9);       vec.add(6);       vec.add(2);       vec.add(8);       System.out.println("The Vector elements are: " ... Read More

Print a Vector in a comma-delimited list, in index order and surrounded by square brackets ([]) in Java

Arushi
Updated on 30-Jun-2020 08:04:49

526 Views

A Vector can be printed in a comma-delimited list, in index order and surrounded by square brackets ([]) by simply using System.out.println() along with the Vector object.A program that demonstrates this is given as follows −Example Live Demoimport java.util.Vector; public class Demo {    public static void main(String args[]) {       Vector vec = new Vector(5);       vec.add(4);       vec.add(1);       vec.add(3);       vec.add(9);       vec.add(6);       System.out.println(vec);    } }The output of the above program is as follows −[4, 1, 3, 9, 6]Now let us understand ... Read More

Matcher.pattern() method in Java Regular Expressions

Vikyath Ram
Updated on 30-Jun-2020 08:05:47

162 Views

The method java.time.Matcher.pattern() returns the pattern that is matched upon by the Matcher. This method accepts no parameters.A program that demonstrates the method Matcher.pattern() in Java regular expressions is given as follows −Example Live Demoimport java.util.regex.Matcher; import java.util.regex.Pattern; public class Demo {    public static void main(String args[]) {       String regex = "Apple";       Pattern p = Pattern.compile(regex);       Matcher m = p.matcher("AppleIsAFruit");       System.out.println("Pattern: " + m.pattern());    } }The output of the above program is as follows −Pattern: AppleNow let us understand the above program.The pattern that is matched upon ... Read More

Class with a constructor to initialize instance variables in Java

Aishwarya Naglot
Updated on 08-Aug-2025 15:09:08

12K+ Views

Constructors are special methods in Java that are invoked when an object is instantiated. They are typically used to initialize instance variables of a class. In this article, we will explore how to create a class with a constructor to initialize instance variables in Java. Creating a Class with a Constructor To create a class with a constructor, you define the class and then create a constructor that has the same name as the class. The constructor accepts parameters to initialize instance variables. Example In the example below, we have a class named 'Car' with three instance variables: 'model', 'year', ... Read More

Append all elements of another Collection to a Vector in Java

Jai Janardhan
Updated on 30-Jun-2020 08:08:14

218 Views

The elements of a Collection can be appended at the end of the Vector using the method java.util.Vector.addAll(). This method takes a single parameter i.e. the Collection whose elements are added to the Vector and it returns true if the Vector is changed.A program that demonstrates this is given as follows −Example Live Demoimport java.util.Vector; public class Demo {    public static void main(String args[]) {       Vector vec1 = new Vector();       vec1.add(7);       vec1.add(3);       vec1.add(5);       vec1.add(9);       vec1.add(2);       System.out.println("The Vector vec1 elements ... Read More

Add elements at the middle of a Vector in Java

Aishwarya Naglot
Updated on 21-Jul-2025 12:21:00

534 Views

In Java, Vector is a part of the Java Collections Framework that implements a growable array of objects, which changes its size. It is thread-safe, so it can be useful in multi-threaded environments. Add elements at the middle of a Vector in Java We can add elements in the middle of a Vector in Java in the following ways: Using add() method Using insertElementAt() method Using add() Method The add() method of the java.util.Vector class accepts an integer value representing an index and an element as parameters and adds the ... Read More

Add elements to a Vector in Java

Aishwarya Naglot
Updated on 17-Jul-2025 17:54:23

1K+ Views

The java.util.Vector class is a part of the Java Collections Framework. It implements the List interface and is used for storing the elements in a dynamic array. It is similar to an ArrayList but is synchronized (thread-safe). The size of a vector grows dynamically as we add more elements to it and shrinks when we remove elements. It can also contain duplicate elements and null values. We can add elements to a vector in the following ways: Using add() Method Using add(int index, E element) Method Using addElement() Method ... Read More

Get Size of Java LinkedHashSet

Aishwarya Naglot
Updated on 29-Jul-2025 18:49:52

388 Views

LinkedHashSet is a collection in Java that maintains the insertion order of elements. It is part of the Java Collections Framework and extends the HashSet class. It stores unique elements and allows null values, but only one null element. It is similar to HashSet; the main difference is that a LinkedHashSet maintains a linked list holding of the entries of the current object, allowing it to maintain the order of elements. Let's learn how to get the size of a LinkedHashSet in Java. The following are some example scenarios: Scenario 1 Input : set = {1, 2, 3, 4, ... Read More

Advertisements