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

这个为什么会报错?

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


phpcn_u700
phpcn_u700

Antworte allen(2)
数据分析师

构造函数不可以私有化吗?-PHP中文网问答-构造函数不可以私有化吗?-PHP中文网问答

围观一下哦,学习一下。

巴扎黑

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

可以这样:

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


Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage