月曜だからデザインパターンでも勉強しよう vol.1 それは何 & singleton

Download 月曜だからデザインパターンでも勉強しよう vol.1 それは何 & Singleton

If you can't read please download the document

Upload: takaaki-hirano

Post on 27-Jan-2017

310 views

Category:

Technology


3 download

TRANSCRIPT

vol.1 & Singleton

Wikipedia

Wikipedia

Wikipedia

ex.

ex.

/

ex.

GoF23

Singleton

class Singleton{ private static $instance;

private __construct() { }

public getInstance() { if (self::$instance) { return self::$instance; }

self::$instance = new self; return self::$instance; }}

DB

DB

DBMultiton

private static $instance = [];