构造函数不可以私有化吗?
phpcn_u700
phpcn_u700 2017-02-10 11:30:04
0
2
1324

这个为什么会报错?

<?php
class A{  
public $a=2; 
 private function __construct(){      
$this->a=4;  }}
$obj =new A();
echo $obj->a;


phpcn_u700
phpcn_u700

reply all(2)
数据分析师

Can't the constructor be privatized? -PHP Chinese website Q&A-Can't the constructor be privatized? -PHP Chinese website Q&A

Let’s take a look and learn.

巴扎黑

构造函数私有化后,不能再使用 new 外部调用,私有方法只能类内部使用。

可以这样:

<?php
class A {  
public $a = 2;  
private function __construct(){      
$this->a=4;  }  
public static function createInstance() {   
   return new A();  }}
$obj = A::createInstance();


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template