Skip to main content

Posts

Showing posts from July, 2016

Polymorphism

Polymorphism Polymorphism means " Many Forms " - One Object with many behaviors. In other words, ability to appear more than one i.e. to do different things with single object. It can be implemented by method overloading and method overriding in java. For eg. : When you press a device it will turn on, when you press it again it will turn off. Similarly in java "+" Plus Operator has polymorphic behavior: It can perform Arithmetic Operation as well as Concatenation Operation Types of Polymorphism Static Polymorphism Dynamic Polymorphism Static Polymorphism also represented as Compile Time  Polymorphism and Early Binding  Polymorphism. Static Polymorphism is just a method overloading. Thus, it is a process of defining more than one functionalities with same name in same class but having different parameter lists (i.e. different no. of parameters list or different parameters type) Here compiler will figure out which method to call by...