php 闭包的作用
巴扎黑
巴扎黑 2016-11-10 17:23:03
0
1
915
 public function __construct($config)
    {    parent::__construct();    $this['config'] = function () use ($config) {        return new Config($config);
    };
    ...

   其中    $this['config'] = function () use ($config) {        return new Config($config);
   能不能直接写成这样:    $this['config'] = new Config($config);
   有什么优势?

巴扎黑
巴扎黑

répondre à tous(1)
phpcn_u29

惰加载。这两种写法都可以,但是。
$this['config'] = new Config($config);
这种方式,当你给$this->['config']赋值的时候,即进行了new Config($config)操作。

$this['config'] = function () use ($config) {        return new Config($config);
}

这种方式,你只是给$this->['config']一个匿名函数,当你要用到的时候,才会进行new Config($config)的操作。

不知道我这种解释对不对= =比较不善表达= =


Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!