geeksforgeeks
Data Structure
Java
Python
HTML
Interview Preparation
  • Tutorials
  • Courses
  • Tracks
  • DSA
  • Practice Problems
  • C
  • C++
  • Java
  • Python
  • JavaScript
  • Data Science
  • Machine Learning
  • Courses
  • Linux
  • DevOps
  • SQL
  • Web Development
  • System Design
  • Aptitude
Similar Topics
Web Technologies32.1K+ articles
DSA20.0K+ articles
Java9.3K+ articles
Misc7.7K+ articles
Java-Functions4.2K+ articles
Java - util package1.6K+ articles
Java Programs1.5K+ articles
Java-Collections1.1K+ articles
java-basics331+ articles
Java-Arrays169+ articles

Java-Vector

82 posts
Java Program to Search an Element in Vector
Last Updated: 23 July 2025
A vector in Java is a dynamic array that can be resized as needed. It is synchronized, which means it is safe in multi-threaded programs. To find an element in a Vector we...read more
Java
Java Programs
Picked
Java-Vector
Extract Unique Elements from a Vector While Preserving the Order in Java
Last Updated: 23 July 2025
Vector in Java can be understood as a dynamic size array, that can be shrink and grow as per the requirement. Vector can be assumed similar to ArrayList, but Vector contai...read more
Java
Java Programs
Picked
Java-Vector
Java Examples
How to Convert a Vector of Objects into a JSON Array in Java?
Last Updated: 28 April 2025
In Java, the conversion of data structures like Vector to JSON (JavaScript Object Notation) format is required especially while working with the APIs or data interchange b...read more
Java