会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
愚蠢的笨蛋
博客园
首页
新随笔
联系
管理
订阅
Facade外观模式
读/facid/是法文
facade
internal
class
Wheel
{
public
void
WAction1() { }
public
void
WAction2() { }
}
internal
class
Engine
{
public
void
EAction1() { }
public
void
EAction2() { }
}
internal
class
Bodywork
{
public
void
BAction1() { }
public
void
BAction2() { }
}
internal
class
Controller
{
public
void
CAction1() { }
public
void
CAction2() { }
}
//
开始了咯~
public
class
TankFacade
{
Wheel[] wheels
=
new
Wheel[
4
];
Engine[] engine
=
new
Engine[
4
];
Bodywork bodywork
=
new
Bodywork();
Controller controler
=
new
Controller();
public
void
Star()
{
//
}
public
void
Stop()
{
//
}
public
void
Run()
{
//
}
public
void
Shot()
{
//
}
}
posted @
2009-05-06 17:30
愚蠢的笨蛋
阅读(
97
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告