gpt4 book ai didi

php - php抽象类中的构造函数有什么用

转载 作者:可可西里 更新时间:2023-10-31 22:53:56 26 4
gpt4 key购买 nike

在询问之前我已经点击了这个链接 - Answer is in JAVA context这是 constructor in PHP .

由于我是初学者,我在 OOP 概念中实现我的 PHP 代码,所以我真的很想知道用法和好处或何时在 PHP 抽象类中使用构造函数。

请提供现实世界中的示例以更好地理解概念。

PS - 虽然我关注 PHP Manuals理解 OOP 概念,但我发现它有点难以理解,任何对后续链接/博客的帮助都非常可观。

我的代码-

<?php

abstract class grandClass
{
abstract function grandmethod();

function __construct()
{
echo "I am grandClass constructor";
}
}

abstract class parentClass extends grandClass
{
abstract function raiseFlag();

function grandmethod()
{
echo "This is grandmethod!!!","<br />";
}

public function getValue()
{
echo "Zero is the blackhole for the numbers!!","<br />";
}
}

class childClass extends parentClass
{

function raiseFlag()
{
echo "Peaceful thoughts!!","<br />";
}

}

$myobj = new childClass();
$myobj->raiseFlag();
$myobj->getValue();
$myobj->grandmethod();

最佳答案

抽象类中的构造函数与具体类中的构造函数相同。在需要时使用构造函数,例如,如果您需要初始化一些数据或分配一些资源。

我举个例子:

abstract class Db
{
protected $pdo;

public function __construct($pdo)
{
$this->pdo = $pdo;
}

abstract function select($table, $fields);
}

class Db_Mysql extends Db
{
public function select($table, $fields)
{
// Build MySQL specific select query
// then execute it with $this->pdo
}
}

class Db_Pgsql extends Db
{
public function select($table, $fields)
{
// Build PostgreSQL specific select query
// then execute it with $this->pdo
}
}

// Usage:
$db = new Db_Mysql($pdo);

$db->select('users', array('id', 'name'));

关于php - php抽象类中的构造函数有什么用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14272598/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com