php设计模式:桥接模式学习心得(附案例代码)假如你有一个形状类(Shape),目前它扩展出了两个子类,圆形类和正方形类。伪代码如下:interface Shape{ function fill ();}class circleShage implements Shape{ 1