单例模式被公认为是 反面模式,为了获得更好的可测试性和可维护性,请使用『依赖注入模式』
1.8.1. 目的
在应用程序调用的时候,只能获得一个对象实例。
1.8.2. 例子
数据库连接
日志 (多种不同用途的日志也可能会成为多例模式)
在应用中锁定文件 (系统中只存在一个 …)
1.8.4. 代码部分
Singleton.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| <?php
namespace DesignPatterns\Creational\Singleton;
final class Singleton {
private static $instance;
public static function getInstance(): Singleton { if (null === static::$instance) { static::$instance = new static(); }
return static::$instance; }
private function __construct() { }
private function __clone() { }
private function __wakeup() { } }
|
1.8.5. 测试
Tests/SingletonTest.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <?php
namespace DesignPatterns\Creational\Singleton\Tests;
use DesignPatterns\Creational\Singleton\Singleton; use PHPUnit\Framework\TestCase;
class SingletonTest extends TestCase { public function testUniqueness() { $firstCall = Singleton::getInstance(); $secondCall = Singleton::getInstance();
$this->assertInstanceOf(Singleton::class, $firstCall); $this->assertSame($firstCall, $secondCall); } }
|
————————————————
原文作者:PHP 技术论坛文档:《PHP 设计模式全集(2018)》
转自链接:https://learnku.com/docs/php-design-patterns/2018/Singleton/1494
版权声明:翻译文档著作权归译者和 LearnKu 社区所有