您好,登錄后才能下訂單哦!
public class house
{
public string name { get; set; }
public house(string _name)
{
this.name = _name;
}
}
public interface guke
{
void buyHouse();
}
public class xiaofeizhe : guke
{
house h;
public xiaofeizhe(house _h)
{
h = _h;
}
public void buyHouse()
{
Console.WriteLine(string.Format("我要買名字為{0}的房子",h.name));
}
}
public class proxy : guke
{
house h;
xiaofeizhe x;
public proxy(house _h)
{
this.h = _h;
}
public void buyHouse()
{
if(x==null)
x = new xiaofeizhe(h);
x.buyHouse();
}
}
前端:
static void Main(string[] args)
{
house h = new house("盤古大廈");
proxy p = new proxy(h);
p.buyHouse();
Console.ReadLine();
}
總結(jié):如果不使用代理類·直接調(diào)用對(duì)象,那么當(dāng)需求有變更時(shí),就需要改變?cè)搶?duì)象,違反了開閉原則,使用代理類的話,就沒有這種問題出現(xiàn)。
特點(diǎn):代理類中引入被代理的對(duì)象,和裝飾模式有一點(diǎn)類似,都是引入第三方對(duì)象(但是裝飾模式主要是擴(kuò)展對(duì)象的行為、屬性)。
好處:1、結(jié)構(gòu)清晰,2、保護(hù)了被代理對(duì)象,3、高擴(kuò)展
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。