Bir üst sınıf nesnesi PHP5'ta bir alt sınıf nesnesi haline Yapımı

2 Cevap php
<?php

    class A{

     //many properties
     protected $myProperty1;
     protected $myProperty2;
     protected $myProperty3; 

     public function __construct(){
      $this->myProperty1='some value';
      $this->myProperty2='some value';
      $this->myProperty3='some value';
     }

     public function getProperty1(){
      return $this->myProperty1;
     }
     public function getProperty2(){
      return $this->myProperty2;
     }
     public function getProperty3(){
      return $this->myProperty3;
     }

     //edited: I added some setters, meaning that the object returned from the functions may already have these properties altered

     public function setProperty1($p){
      $this->myProperty1=$p;
     }
     public function setProperty2($p){
      $this->myProperty2=$p;
     }
     public function setProperty3($p){
      $this->myProperty3=$p;
     }


    }

    class B extends A{

     private $myProperty4;

     public function __construct(A $a){
      $this=$a; //this line has error,it says $this cannot be re-assigned
      $this->myProperty4='some value';
     }

     public function getProperty4(){
      return $this->myProperty4;
     }   
    }

   //$a = new A();
   $a = someClass::getAById(1234); //edited: $a is returned by a function (I cannot modify it)
   $b= new B($a); //error

?>

Ben gördüğünüz gibi, B'nin kurucusuna bir A'nın nesnesi ileterek bir B'nin nesnesi oluşturmak için ben $ this değişkeni yeniden atanamıyor istiyorum. Ben A sınıfı, A birçok özellikleri varken bana B'nin kurucusuna böyle şeyler yapmak için, bu sıkıcı olurdu değiştirmek veremiyorum:

 public function __construct(A $a){

  parent::__construct();
  $this->myProperty1=$a->getProperty1(); 
  $this->myProperty2=$a->getProperty2();
  $this->myProperty3=$a->getProperty3();

  $this->myProperty4='some value';

 }

Benim soru, nasıl güvenli kodlama az miktarda bir A'nın nesne kullanarak B sınıfı bir nesne oluşturabilirsiniz olmasıdır?

2 Cevap

class A
{
  public $property = 'Foobar';
}

class B extends A
{
  public function __construct()
  {
    echo $this->property; // Foobar
  }
}

Ben bir şey eksik? Bunu yapmak amacıyla değil bir şey yapmak için OOP zorlamak için çalışıyoruz, ya da sorun miras anlamakta yaşıyorsanız gibi geliyor.

A sınıfı her kamu veya korumalı yöntem ve özellik doğrudan (benim örnekte olduğu gibi) onu referans veya parent :: sözdizimi kullanılarak sınıf B. Ya mevcuttur.

EDIT

(Yazar açıklık soru)

Sınıf A'nın özellikleri erişilebilir iseniz, B sınıfı için onları kopyalamak için aşağıdaki gibi bir şey kullanabilirsiniz

class B
{
  public function __construct()
  {
    $a = new A(); // Or however A is instantiated
    foreach(get_object_vars($a) as $key => $value)
    {
      $this->$key = $value;
    }
  }
}

B A uzanır yana, neden sadece başlamak için B oluşturmak değil mi? Eğer bazı ekstra özelliklerini başlatmak için gerekiyorsa, bu gibi kurucu aşırı binmek:

class B extends A {
    public function __construct(){
      parent::__construct(); //calls A's constructor
      $this->Bproperty='somevalue';
    }

}

Bu yeterince iyi değilse, o zaman Yansıma bakmak isteyebilirsiniz.