摘要: 备忘录模式 <?php class Memento{ private $_state; public function __construct($state){ $this->_state=$state; } public function getState(){ return $this->_st 阅读全文
posted @ 2017-08-15 09:47 Bin_x 阅读(206) 评论(0) 推荐(0)