Jump to content

OOP Inheritance help


c_pattle

Recommended Posts

I have just begun to play around with inheritance when using OOP and have come across a problem. 

 

I have two classes, one called "firstClass" that is the parent class and another that is called "secondClass" that is the child class.  I know that in the child class I can override the methods in the parent class but do you have to override them completely or can you just override certain bits of them? 

 

For example say in I have this method in the firstClass. 

function doSomething() {
    $firstline = "<p>Hello</p>";
    $secondlne = "<p>World</p>";
    $thirdline = "<p>!</p>"
}

 

Then what do I do if I only want to override the second line of this function in the child class "secondClass"?  Is it best to just override everything or are there recommended design patterns for this sort of thing?

 

 

Thanks for any help. 

Link to comment
Share on other sites

its really up to you as to what you want to change and what you don't want to change..

 

function doSomethingElse extends doSomething() {    piblic $firstline = "<p>Hello</p>";    $second_line = parent::secondline}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.