* Andy Pieters <[EMAIL PROTECTED]>:
> This is kinda hard to say in words, so I'll give a little example
>
> Class A
>   function x
>     calls function guid
>   function y
>   function z
>   function guid
> Class B extends A
>  function y
>    calls function x
>  function guid
>
> So what I'm wondering is when class B calls its function Y, it will in its 
> turn call function X (which is not overloaded in class B) and function X 
> calls the function GUID from which class?  Class A or Class B?

Since Class B overrides method guid, function x will call the method
from Class B. 

-- 
Matthew Weier O'Phinney           | WEBSITES:
Webmaster and IT Specialist       | http://www.garden.org
National Gardening Association    | http://www.kidsgardening.com
802-863-5251 x156                 | http://nationalgardenmonth.org
mailto:[EMAIL PROTECTED]         | http://vermontbotanical.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to