php中trait單例和調用執行個體詳解

來源:互聯網
上載者:User

Trait單例

執行個體如下

<?phptrait singleton {        /**     * private construct, generally defined by using class     */    //private function construct() {}        public static function getInstance() {        static $_instance = NULL;        $class = CLASS;        return $_instance ?: $_instance = new $class;    }        public function clone() {        trigger_error('Cloning '.CLASS.' is not allowed.',E_USER_ERROR);    }        public function wakeup() {        trigger_error('Unserializing '.CLASS.' is not allowed.',E_USER_ERROR);    }}/*** Example Usage*/class foo {    use singleton;        private function construct() {        $this->name = 'foo';    }}class bar {    use singleton;        private function construct() {        $this->name = 'bar';    }}$foo = foo::getInstance();echo $foo->name;$bar = bar::getInstance();echo $bar->name;

調用trait方法

雖然不很明顯,但是如果Trait的方法可以被定義為在普通類的靜態方法,就可以被調用

執行個體如下

<?php trait Foo {     function bar() {         return 'baz';     } } echo Foo::bar(),"\\n"; ?>

CLASS和TRAIT

CLASS 返回 use trait 的 class name,TRAIT返回 trait name

樣本如下

<?phptrait TestTrait {    public function testMethod() {        echo "Class: " . CLASS . PHP_EOL;        echo "Trait: " . TRAIT . PHP_EOL;    }}class BaseClass {    use TestTrait;}class TestClass extends BaseClass {}$t = new TestClass();$t->testMethod();//Class: BaseClass//Trait: TestTrait

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.