JBT

JBT

Java Method Override

A class inheriting the method from its superclass has the option to override it. The benefit of overriding is the ability to define behavior specific to a particular class. In the case of a concrete subclass, it is forced to implement all methods defined…

Java Exceptions Tutorial

Exception in Java is used to handle errors or any other exceptional event that occurs in the normal flow of a program. There are several way Exception can occur in Java. Data provided is not in expected format(eg. int instead of…

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…

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…

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…

Java Reference Variable

Reference variables are used to refer to an object. They are declared with a specific type that cannot be changed. Types of reference variables Static Variable Instance Variable Method Parameter Local Variable

Java Static Keyword

What is Static Static is a Non Access Modifier. Applicable to The Static keyword can be applied to Method Variable Class nested within another Class Initialization Block

Java Array Tutorial

Java Array is a data structure type which is used to store multiple variables of the same type. Arrays can hold Primitives as well as Object. The variables in the array are ordered but not sorted. Each element in the…