Jump to content

Problem with derived class


atitthaker

Recommended Posts

I have the code as given below:
<?php
class ABC {
    function printValue()
    {
        print("This value shall be printed" . $this->x);
    }
}
class BCD extends ABC {
    private $x=10;
}

$bcd=new BCD;
$bcd->printValue();

?>

But when I try to access printValue function from the paren class it gives me error...

[color=red]Fatal error: Cannot access private property BCD::$x in /var/www/html/trainingweb/modules/test/TestAtitProblem.php on line 5[/color]

As the public method of ABC would be extended to BCD, it shall have access to its own member.

Plz help...
Link to comment
https://forums.phpfreaks.com/topic/17706-problem-with-derived-class/
Share on other sites

  • 4 years later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.