B
billy_yuan
Unregistered / Unconfirmed
GUEST, unregistred user!
interface IKiss
{
public void KissGirl() ;
}
class SuperDecorator implements IKiss
{
IKiss boy ;
public SuperDecorator(IKiss boy)
{
this.boy = boy ;
}
public void KissGirl()
{
goAfter() ;
}
public void goAfter()
{
System.out.println("送花");
System.out.println("看电影");
System.out.println("送人家回家");
boy.KissGirl();
System.out.println("先吃块口香糖,只许一下哦!");
System.out.println("以下省略500字xxx!");
}
}
class boy implements IKiss
{
public void KissGirl()
{
System.out.println("我想亲你一下好么?");
}
}
public class Decorator
{
public static void main(String args[])
{
new Decorator() ;
}
public Decorator()
{
boy thisboy = new boy() ;
//从前有个男孩有一个愿望KissGirl()
thisboy.KissGirl();
//终于碰到自己喜欢的那种,于是就直接对他说。。。
System.out.println("啪啪,怎么有5只小鸡在天上老飞来飞去!'");
//白痴都知道发生了什么事情。
System.out.println("看来,我只有去找SuperDecorator让他把我变成泡MM高手!");
//不行,我要充电。
SuperDecorator superboy = new SuperDecorator(thisboy) ;
//正在充电的过程中。。。。
superboy.KissGirl();
//费尽千辛万苦,终于。。。。
}
}
点评:
本来BOY的愿望就不是太容易办到,并且还小胡同里面赶猪----直来直去,那肯定会挨扁的
幸好找到一位高人SuperDecorator在他实现他的愿望之前做一些事情,结果那MM终于就范了,
{
public void KissGirl() ;
}
class SuperDecorator implements IKiss
{
IKiss boy ;
public SuperDecorator(IKiss boy)
{
this.boy = boy ;
}
public void KissGirl()
{
goAfter() ;
}
public void goAfter()
{
System.out.println("送花");
System.out.println("看电影");
System.out.println("送人家回家");
boy.KissGirl();
System.out.println("先吃块口香糖,只许一下哦!");
System.out.println("以下省略500字xxx!");
}
}
class boy implements IKiss
{
public void KissGirl()
{
System.out.println("我想亲你一下好么?");
}
}
public class Decorator
{
public static void main(String args[])
{
new Decorator() ;
}
public Decorator()
{
boy thisboy = new boy() ;
//从前有个男孩有一个愿望KissGirl()
thisboy.KissGirl();
//终于碰到自己喜欢的那种,于是就直接对他说。。。
System.out.println("啪啪,怎么有5只小鸡在天上老飞来飞去!'");
//白痴都知道发生了什么事情。
System.out.println("看来,我只有去找SuperDecorator让他把我变成泡MM高手!");
//不行,我要充电。
SuperDecorator superboy = new SuperDecorator(thisboy) ;
//正在充电的过程中。。。。
superboy.KissGirl();
//费尽千辛万苦,终于。。。。
}
}
点评:
本来BOY的愿望就不是太容易办到,并且还小胡同里面赶猪----直来直去,那肯定会挨扁的
幸好找到一位高人SuperDecorator在他实现他的愿望之前做一些事情,结果那MM终于就范了,