PHP オブジェクト指向プログラミングは、拡張機能とカスタム クラスを通じて拡張できます。拡張クラスは親クラスのプロパティとメソッドを継承し、新しいプロパティとメソッドを追加できます。カスタム クラスはインターフェイス メソッドを実装することで特定の機能を実装します。実際には、抽象クラス Shape を拡張することで、Circle や Rectangle などの具体的な形状を作成し、動的に面積を計算することができます。
PHP オブジェクト指向プログラミング: 拡張機能とカスタマイズ
オブジェクト指向プログラミング (OOP) を使用すると、再利用可能で保守可能なコードを作成できます。 PHP では、既存のクラスを拡張およびカスタマイズすることで、OOP をさらに拡張できます。
拡張クラス
クラスを拡張するには、extends
キーワードを使用します。拡張クラスは親クラスのすべてのプロパティとメソッドを継承し、新しいプロパティとメソッドを追加できます。 extends
关键字可以扩展一个类。扩展后的类继承父类的所有属性和方法,并可以添加新属性和方法。
class BaseClass { protected $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } } class ExtendedClass extends BaseClass { private $age; public function __construct($name, $age) { parent::__construct($name); $this->age = $age; } public function getAge() { return $this->age; } }
定制类
使用 implements
关键字可以定制一个类,让它实现一个或多个接口。接口定义了一组方法,该类必须实现这些方法。
interface MyInterface { public function doSomething(); } class MyClass implements MyInterface { public function doSomething() { // 具体实现 } }
实战案例
考虑一个抽象类 Shape
,它定义了一个 getArea()
方法。我们扩展此类以创建具体形状,例如 Circle
和 Rectangle
。
abstract class Shape { protected $color; public function __construct($color) { $this->color = $color; } abstract public function getArea(); } class Circle extends Shape { private $radius; public function __construct($color, $radius) { parent::__construct($color); $this->radius = $radius; } public function getArea() { return pi() * $this->radius ** 2; } } class Rectangle extends Shape { private $width; private $height; public function __construct($color, $width, $height) { parent::__construct($color); $this->width = $width; $this->height = $height; } public function getArea() { return $this->width * $this->height; } }
我们可以创建 Circle
和 Rectangle
对象并访问它们各自的 getArea()
rrreee
implements
キーワードを使用して、1 つ以上のインターフェイスを実装するようにクラスをカスタマイズします。インターフェイスは、クラスが実装する必要があるメソッドのセットを定義します。 🎜rrreee🎜🎜実際的なケース🎜🎜🎜 getArea()
メソッドを定義する抽象クラス Shape
を考えてみましょう。このクラスを拡張して、Circle
や Rectangle
などの具体的な形状を作成します。 🎜rrreee🎜 Circle
オブジェクトと Rectangle
オブジェクトを作成し、それぞれの getArea()
メソッドにアクセスすることで、面積を動的に計算できます。 🎜以上がPHP オブジェクト指向プログラミングの深い理解: オブジェクト指向プログラミングの拡張とカスタマイズの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。