in reply to Inheritance strangeness

Damn,

I tried to make simple test case for a problem I'm having with mod_perl spread out over 5 modules and using multiple inheritance, and I ran into the stupid B module.

The test case now works, but my mod_perl issue still exists ... Grr!

Replies are listed 'Best First'.
Re^2: Inheritance strangeness
by adamk (Chaplain) on Sep 08, 2004 at 12:41 UTC
    And the same answer as above applies...

    C::foo is a function call, C->foo is a method call.

    C::foo is procedural style and doesn't inherit, C->foo is an OO style and does inherit.