文章分类 -  设计模式

摘要:原文:http://soft.chinabyte.com/database/118/12573118.shtml代理接口: public interface ProxyInterface { public abstract void action(); } 真实角色: public class RealObject implements ProxyInterface{ @Override public void action() { // TODO Auto-generated method stub System.out.println("Real Action metho... 阅读全文
posted @ 2013-03-29 09:55 Snuby 阅读(75) 评论(0) 推荐(0)