aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Method Overriding with Object Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Method Overriding with Object" Watch "Method Overriding with Object" New topic
Author

Method Overriding with Object

Srinivas Palam
Ranch Hand

Joined: Oct 20, 2005
Posts: 39
According to the scjp6 book, red colored line should disply Animal, but I am geeting complie error. Please help.




ERROR:
D:\Java>javac UseAnimals.java
UseAnimals.java:19: useAnimals(Horse) in UseAnimals cannot be applied to (Animal
)
ua.useAnimals(animalRefToHorse);
^
1 error

D:\Java>
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

I expect that's because you misspelled the method name in line 6 of your posted code.
Srinivas Palam
Ranch Hand

Joined: Oct 20, 2005
Posts: 39
Thank You.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Method Overriding with Object
 
Similar Threads
Dout about overloaded methods
needs explanation
Query on the topic overloading
knb book pgs 308-310 polymorphism con't.
Compile time polymorphism