• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Polymorphic method declarations

 
Ranch Hand
Posts: 81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

A reference variable can refer to any object of the same type as the declared reference, or it can refer to any subtype of the declared type!



I have seen this in K & B SCJP Book. What is the main advantage in this kind of method declarations ?


What is the problem with this declaration ?


When should we choose polymorphic method declarations?
 
Ranch Hand
Posts: 274
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In those cases where you want type specific methods to be executed. Like Animal class having an eat method. Now based on cat and dog subclasses object, you prefer to have the eat method of either dog/cat executed.

Example:


[ February 08, 2008: Message edited by: Gitesh Ramchandani ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic