dongweihuan8610 2018-07-25 23:08
浏览 92
已采纳

如何在php中声明扩展类的变量

I am trying to declare a variable, specifically the $publisher variable, but it is not working. I am unsure if I have extended the class correctly.

Books is the main class and Novel is the extended class.

THE PHP CLASSES

class Books {

    /* Member variables */
    public $price;
    public $title;

    /* Member functions */
    public function setPrice($par){
        $this->price = $par;    
    }

    public function getPrice(){
        echo $this->price.'<br/>';
    }

    public function setTitle($par){
        $this->title = $par;
    }

    public function getTitle(){
        echo $this->title.'<br/>';
    }

    public function __construct($par1,$par2){
        $this->title = $par1;
        $this->price = $par2;
    }

}

class Novel extends Books {
    public  $publisher;

    public function setPublisher($par){
        $this->publisher = $par;
    }

    public function getPublisher(){
        echo $this->publisher;
    }

}

** CALLING THE CLASS **

include 'includes/book.inc.php';

$physics = new Books("Physics for High School" , 2000);
$chemistry = new Books("Advanced Chemistry" , 1200);
$maths = new Books("Algebra", 3400);


$physics->getTitle();
$chemistry->getTitle();
$maths->getTitle();

$physics->getPrice();
$chemistry->getPrice();
$maths->getPrice();

if (class_exists('Novel')) {
    echo 'yes';
}

$pN = new Novel();
$pN->setPublisher("Barnes and Noble");
$pN->getPublisher();

** THE RESULT **

Physics for High School
Advanced Chemistry
Algebra
2000
1200
3400
yes

As you can see it does not declare the $Publisher() Value.

My question is What am I missing?

  • 写回答

1条回答 默认 最新

  • doufan3958 2018-07-25 23:16
    关注

    If you enable error reporting you will see the error, the code is not actually being run.

    Fatal error: Uncaught ArgumentCountError: Too few arguments to function Books::__construct(), 0 passed in ... on line 62 and exactly 2 expected

    Because you are extending the class and the parent has a construct, you need to either pass it the values $pN = new Novel('To Kill a Mockingbird', 2.99);, or define them a default.

    public function __construct($par1 = '',$par2 = ''){
        $this->title = $par1;
        $this->price = $par2;
    }
    

    Then it will work fine:

    Physics for High School
    Advanced Chemistry
    Algebra
    2000
    1200
    3400
    yesBarnes and Noble

    https://3v4l.org/Ydthj

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号