Java instanceof Operator 1. Introduction In this quick tutorial, we’ll learn about the instanceof operator in Java. 2. What is the instanceof Operator? instanceof is a binary operator used to test if an object is of a given type. The result of the operation is either true or false. It’s also known as type comparison operator because it… Continue Reading java-instanceof

Method Overloading and Overriding in Java 1. Overview Method overloading and overriding are key concepts of the Java programming language, and as such, they deserve an in-depth look. In this article, we’ll learn the basics of these concepts and see in what situations they can be useful. 2. Method Overloading… Continue Reading java-method-overload-override