摘要: -- 不用桥接模式的实现 package com.bjsxt.bridge; public interface Computer { void sale(); } class Desktop implements Computer { @Override public void sale() { S 阅读全文
posted @ 2017-07-17 15:57 周无极 阅读(124) 评论(0) 推荐(0) 编辑