First Program In Java

Before developing first Java program , we need to have below things set. 1) JDK Installation Download and install the JDK using below link Java download link 2) Set the jdk path Now write the Java program either in notepad or in eclipse IDE. class FirstJavaProgram{       public static void main(String args[]){   […]

Share this article on

Polymorphism

Polymorphism is the concept where an object behaves differently in different situations Since the object takes multiple forms, it is called Polymorphism. Types of Polymorphism Static Polymorphism (compile time polymorphism/ Method overloading): Method Overloading In a class,if we have multiple methods with same name but different in parameters then it is called Method overloading. Whenever […]

Share this article on
< Previous Next >