Posts by "JBT"

Collection in Java

Collection Framework has been added in JDK 1.2 and has been expanded in 1.4 -1.6 Interface & Classes of Collection Framework Collection API provides a group of the interface to choose from, but it also gives you some concrete classes to directly play with. Core Interfaces Collection List Set SortedSet (Extends Set Interface) NavigableSet (Extends SortedSet) Map… Continue reading

Interface in java

Defining a Contract means to create an Interface. This Contract states what a Class can do without forcing how it should do it. In this Java Interface Tutorial, we will talk about Interfaces. How to create one and rules applied to Interfaces.

Instance Variable in Java

An Instance variable in Java is used by Objects to store their states. Variables that are defined without the STATIC keyword and are Outside any method declaration are Object-specific and are known as instance variables. They are called so because their values are instance-specific and are not shared among instances. If a class has an instance variable,… Continue reading