doutui2883 2013-11-05 18:40 采纳率: 100%
浏览 30
已采纳

PHP OOP:从继承自父属性的子/子访问父属性

so the code is : DAO class

    abstract class DAO  
    {   
    protected $db; 
    protected $SQL_host='localhost';
    protected $SQL_port='3306';
    protected $SQL_dbname='projet'; 
    protected $SQL_login='root'; 
    protected $SQL_password='';

    protected function __construct()
    {
        $this->setDb(new PDO('mysql:host='.$this->SQL_host.';port='.$this->SQL_port.';dbname='.$this->SQL_dbname, $this->SQL_login, $this->SQL_password)) ;
    }

    protected function setDb(PDO $bdd)
    {
        $this->db = $bdd ;
    }


    }

and child UserDAO class

     class UserDAO extends DAO 
     {
     public function __construct()
     {
         parent::__construct();
     }
     }

When UserDAO child class inherits from parent DAO, does the child get parent's attributes ? If not, how can I make so ?

I've been looking around and they mostly tell to use get function but that's really not what i'm trying to do. Thanks for your help

  • 写回答

2条回答 默认 最新

  • dongyun8891 2013-11-05 18:46
    关注

    Yes, the subclass inherits the parent class's members.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化