java
C++ and Java Differences
There are various differences between c++ and java. A few noticeable differences are mentioned below
Posted June 25, 2022 by Anusha ‐ 2 min read
Abstract Class vs Interfaces
Posted July 22, 2022 by Anusha ‐ 2 min read
⌖ core java programming abstract class differences interface
Linkedlist
Linked List is a part of the Collection framework present in java.util package. This class is an implementation of the LinkedList data structure which is a linear data structure where the elements are not stored in contiguous locations and every element is a separate object with a data part and address part. The elements are linked using pointers and addresses. Each element is known as a node.
Posted August 16, 2022 by Anusha ‐ 5 min read
⌖ core java programming linkedlist list collections data-structures
Vector Class
The Vector class implements a growable array of objects. Vectors fall in legacy classes, but now it is fully compatible with collections. It is found in java.util package and implement the List interface, so we can use all the methods.
Posted August 18, 2022 by Anusha ‐ 6 min read
⌖ core java programming vector class array deprecated list collections