Heim > Backend-Entwicklung > PHP-Tutorial > PHP好的方法书写不同名但方法相同的类。

PHP好的方法书写不同名但方法相同的类。

WBOY
Freigeben: 2016-06-06 20:35:29
Original
1032 Leute haben es durchsucht

比如说:

<code>class A {
    private $value = null;
    public function __construct() {
        $this->value = 1;
    }
}

class B {
    private $differentValue = null;
    public function __construct() {
        $this->differentValue = 1;
    }
}
</code>
Nach dem Login kopieren
Nach dem Login kopieren

A和B的作用完全不同, 他们两个没有办法合并。

<code>class C extends A {
    public function display() {
        echo "OK";
    }
}

class D extends B {
    public function display() {
        echo "OK";
    }
}
</code>
Nach dem Login kopieren
Nach dem Login kopieren

C和D的内容又完全相同, 这样的情况有没有什么好的方法把C和D的内容只写一遍?

因为要向下兼容5.3的, 所以trait不能用~~~

回复内容:

比如说:

<code>class A {
    private $value = null;
    public function __construct() {
        $this->value = 1;
    }
}

class B {
    private $differentValue = null;
    public function __construct() {
        $this->differentValue = 1;
    }
}
</code>
Nach dem Login kopieren
Nach dem Login kopieren

A和B的作用完全不同, 他们两个没有办法合并。

<code>class C extends A {
    public function display() {
        echo "OK";
    }
}

class D extends B {
    public function display() {
        echo "OK";
    }
}
</code>
Nach dem Login kopieren
Nach dem Login kopieren

C和D的内容又完全相同, 这样的情况有没有什么好的方法把C和D的内容只写一遍?

因为要向下兼容5.3的, 所以trait不能用~~~

<code>class A {
private $value = null;
public function __construct() {
$this->value = 1;
}
}

class B {
private $differentValue = null;
public function __construct() {
$this->differentValue = 1;
}
}

/**
* @method void display()
*/
class C extends A {
private $handler = null;
public function __construct() {
parent::construct();
$this->handler = new E();
}
public function __call($name, $params) {
if ( method_exists($this->handler, $name) ) {
return call_user_func_array(array($this->handler, $name), $params);
} else {
throw new Exception('Method "'.$name.'" does not exists.');
}
}
}

/**
* @method void display()
*/
class D extends B {
private $handler = null;
public function __construct() {
parent::construct();
$this->handler = new E();
}
public function __call($name, $params) {
if ( method_exists($this->handler, $name) ) {
return call_user_func_array(array($this->handler, $name), $params);
} else {
throw new Exception('Method "'.$name.'" does not exists.');
}
}
}

Class E {
public function display() {
echo "OK";
}
}
</code>
Nach dem Login kopieren

http://3v4l.org/ns6q7

<code><?php class A
{
    public $name   = 'a';
    private $value = null;
    public function __construct()
    {
       $this->value = 1;
    }
}

class B
{
    public $name            = 'b';
    private $differentValue = null;
    public function __construct()
    {
        $this->differentValue = 1;
    }
}

class CD
{
    private $parent = null;
    public function __construct($parent)
    {
        $this->parent = new $parent;
    }

    public function __call($name, $params)
    {
        if ( is_callable(array($this->parent, $name)) ) {
            return call_user_func_array(array($this->parent, $name), $params);
        } else {
            throw new Exception('Method "'.$name.'" should be callable.');
        }
    }

    public function __get($property_name){
        if(isset($this->$property_name)) {
            return $this->$property_name;
        } elseif (isset($this->parent->$property_name)) {
            return $this->parent->$property_name;
        } else {
            return null;
        }
    }

    public function display()
    {
        echo "OK";
    }

}


$c = new CD(new B);

var_dump($c->name);
</code>
Nach dem Login kopieren
Verwandte Etiketten:
php
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage