aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Runtime and Compiletime Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply locked New topic
Author

Runtime and Compiletime

John Paterson
Ranch Hand

Joined: Mar 12, 2012
Posts: 81
Hi folks...

Do have a look at the following code:



Is it true that at comple time it's checked if the 'eat' method exists in the Animal class and at runtime Java selects the actual version of the method that is to be run, which in this case for object ref b it would have to be the eat method of the 'Horse' class??

Jaikiran Pai
Marshal

Joined: Jul 20, 2005
Posts: 8210
    
  71

Please continue the discussion in your duplicate thread here http://www.coderanch.com/t/584125/java-programmer-SCJP/certification/run-time-compile-time

[My Blog] [JavaRanch Journal]
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Runtime and Compiletime
 
Similar Threads
Confused in function overriding
Polymorphism
run-time and compile-time
which version of method is actually called ? the reference one or actual object one ?
overloaded method call rules