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

装饰设计模式的简单理解

时间:2016-07-10 06:32:27      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:装饰设计

//装饰设计模式。
//不修改原对象,对原有对象的功能进行增强。
class Person
{
    void chifan()
    {
        System.out.println("吃饭");
    }
}

class NewPerson
{
    private Person p;
    NewPerson(Person p)
    {
        this.p = p;
    }
    public void newChifan()
    {
        System.out.println("开胃酒");
        p.chifan();
        System.out.println("甜点");
        System.out.println("嘘嘘");
    }
}

class  PersonDemo
{
    public static void main(String[] args)
    {
        Person p = new Person();
        p.chifan();

        NewPerson np = new NewPerson(p);
        np.newChifan();
    }
}



装饰设计模式的简单理解

标签:装饰设计

原文地址:http://11760512.blog.51cto.com/11750512/1813883

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