摘要: //策略模式 interface ChargeStrategy{ public function charge();}//OK,抽象策略类就完成了// 支付宝策略类class AliCharge implements ChargeStrategy{ public function charge() 阅读全文
posted @ 2019-05-07 09:48 黑白配 阅读(705) 评论(0) 推荐(0)
摘要: <?php /** * 策略模式 * @author 桃谷六仙 * */ interface Math{ public function calc($op1,$op2);} class MathAdd implements Math{ public function calc($op1, $op2) 阅读全文
posted @ 2019-05-07 09:45 黑白配 阅读(120) 评论(0) 推荐(0)