PHP School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!

Welcome to Dream.In.Code
Become a PHP Expert!

Join 300,394 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,594 people online right now. Registration is fast and FREE... Join Now!




abstract inheritance

 

abstract inheritance, Oh the humanity...

maffelu

2 Jul, 2009 - 11:59 PM
Post #1

D.I.C Head
Group Icon

Joined: 21 Aug, 2008
Posts: 134



Thanked: 9 times
My Contributions
Right.

Some code first to explain my toughts:

CODE

<?php

abstract class A{
    abstract public function foo();
}

abstract class B extends A{
    abstract public function foo();
}

class C extends B{
    public function foo(){}
}

?>


This doesn't work and gives the following error:

Fatal error: Can't inherit abstract function A::foo() (previously declared abstract in cool.gif in .....tester.php on line 9

Now, the example above is not exactly what I'm doing, but it's damn close. I have A, which is a very very general root class for basically everything in my class lib. B is a little more specific and acts as base root for a certain part of the class lib, and C is a direct class that inherits B and should implement the foo() function.

Is it not possible to pass on the task of implementing an abstract function?

User is offlineProfile CardPM
+Quote Post


maffelu

RE: Abstract Inheritance

3 Jul, 2009 - 12:10 AM
Post #2

D.I.C Head
Group Icon

Joined: 21 Aug, 2008
Posts: 134



Thanked: 9 times
My Contributions
[SOLVED]

Of course, you shouldn't bring it up at all in B:
CODE

<?php

abstract class A{
    abstract public function foo();
}

abstract class B extends A{
}

class C extends B{
    public function foo(){}
}

?>

User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic

Time is now: 11/7/09 09:56PM

Live PHP Help!

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter Fan Us On Facebook

PHP Tutorials

Reference Sheets

PHP Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month