码迷,mamicode.com
首页 > 其他好文 > 详细

外观模式-分层架构,方便维护遗留下的大型的系统

时间:2014-04-29 11:15:47      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:blog   java   re   c   div   line   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
public class Facade {
 
    /**
     * @param args 外观模式
     */
    One one;
    Two two;
    Three three;
     
    public Facade() {
        one=new One();
        two=new Two();
        three=new Three();
    }
     
    public void Method1() {
        System.out.println("********1");
        one.methodone();
        two.methodtwo();
    }
     
    public void Methon2() {
        System.out.println("*********2");
        two.methodtwo();
        three.methodthree();
    }
     
    public static void main(String[] args) {
        // TODO Auto-generated method stub
 
        Facade facade=new Facade();
        facade.Method1();
        facade.Methon2();
    }
 
}
 
class One{
    public void methodone() {
        System.out.println("1111");
    }
}
class Two{
    public void methodtwo() {
        System.out.println("2222");
    }
}
class Three{
    public void methodthree() {
        System.out.println("3333");
    }
}

  

1
<br><br>

  

外观模式-分层架构,方便维护遗留下的大型的系统,码迷,mamicode.com

外观模式-分层架构,方便维护遗留下的大型的系统

标签:blog   java   re   c   div   line   

原文地址:http://www.cnblogs.com/daifei/p/3698891.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!