首页 > 代码库 > 门面模式
门面模式
门面模式【Facade Pattern 】
interface LetterProcess{ void writeContent(String content); void fillEnvelope(String address); void LetintoEnvelope(); void sendLetter(); } class LetterProcessImpl implements LetterProcess{ @Override public void writeContent(String content) { System.out.println("fill content"); } @Override public void fillEnvelope(String address) { System.out.println("fill address"); } @Override public void LetintoEnvelope() { System.out.println("letintoenvelope"); } @Override public void sendLetter() { System.out.println("send letter into envelope"); } } class ModenPost{ private LetterProcess letterProcess = new LetterProcessImpl(); public void sendLetter(String content,String address){ letterProcess.writeContent(content); letterProcess.fillEnvelope(address); letterProcess.LetintoEnvelope(); letterProcess.sendLetter(); } } public class Client{ public static void main(String[] args) { ModenPost modenPost = new ModenPost(); modenPost.sendLetter("content","address"); } }
过年第一更
门面模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。