javascript模擬實(shí)現(xiàn)接口、多繼承

javascript模擬實(shí)現(xiàn)接口、多繼承

ID:33158928

大?。?1.50 KB

頁(yè)數(shù):6頁(yè)

時(shí)間:2019-02-21

javascript模擬實(shí)現(xiàn)接口、多繼承_第1頁(yè)
javascript模擬實(shí)現(xiàn)接口、多繼承_第2頁(yè)
javascript模擬實(shí)現(xiàn)接口、多繼承_第3頁(yè)
javascript模擬實(shí)現(xiàn)接口、多繼承_第4頁(yè)
javascript模擬實(shí)現(xiàn)接口、多繼承_第5頁(yè)
資源描述:

《javascript模擬實(shí)現(xiàn)接口、多繼承》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在應(yīng)用文檔-天天文庫(kù)。

1、在Javascript模擬實(shí)現(xiàn)接口、多繼承[模式]2007-01-2517:56?在其他語(yǔ)言中比如C#、Java,接口方法在定義的時(shí)候都是未實(shí)現(xiàn)的,而我這里模擬的JS接口則是可以在定義的時(shí)候?qū)崿F(xiàn)的。定義接口:varIClassManager={hasClass:function(className){},addClass:function(className){}};定義菜單類:varMenu=function(options){this._element=null;this.setXY=function(x,y

2、){if(x)this._element.style.left=x+'px';if(y)this._element.style.top=y+'px';}};定義菜單項(xiàng)類:varMenuItem=function(){this.setText=function(){};}其實(shí)菜單類和菜單項(xiàng)類都是基于HTMLElement的抽象,因此如果要讓他們可以靈活的定義HTMLElement樣式,那么都需要一組管理className的方法。因此Menu和MenuItem都需要實(shí)現(xiàn)IClassManager。輔助實(shí)現(xiàn)接口的方法:

3、varextend=function(dest,source){//實(shí)現(xiàn)接口dest=self

4、

5、{};for(propertyinsource){if(!dest[property])//如果dest也就是類沒(méi)有同名的方法,則用接口默認(rèn)實(shí)現(xiàn)方法。dest[property]=dest[property];}returndest;}extend(Menu.prototype,IClassManager);extend(MenuItem.prototype,IClassManager);這樣Menu和MenuIte

6、m都具有了Class的管理能力。?通過(guò)extend,Menu和MenuItem可以實(shí)現(xiàn)任意的接口,并且同時(shí)實(shí)現(xiàn)多個(gè)接口。在實(shí)現(xiàn)接口之前Menu和MenuItem還可以有一次繼承的機(jī)會(huì):Menu.prototype=newBaseClass();//最簡(jiǎn)單的繼承方式然后再實(shí)現(xiàn)接口:extend(Menu.prototype,IClassManager);?這樣就類似單根繼承+多接口實(shí)現(xiàn),很像C#或者Java吧下面是完整的代碼:?(function(){varEvent=joyeach.util.Event;vare

7、xtend=function(dest,source){//實(shí)現(xiàn)接口dest=self

8、

9、{};for(propertyinsource){if(!dest[property])dest[property]=dest[property];}returndest;}//ClassManagerInterfacevarIClassManager={hasClass:function(className){varreg=newRegExp('(?:^

10、\s+)'+className+'(?:\s+

11、$)');ret

12、urnreg.test(this._element['className']);},addClass:function(className){if(this.hasClass(el,className))?return;?this._element['className']=[this._element['className'],className].join('');}}/***菜單類*/joyeach.controls.Menu=function(options){this._element=null;thi

13、s.setXY=function(x,y){if(x)this._element.style.left=x+'px';if(y)this._element.style.top=y+'px';};this.getXY=function(){return[parseInt(this._element.style.left),parseInt(this._element.style.top)];};this.addItem=function(item){this._element.appendChild(item._e

14、lement);Event.fireEvent(this,'onadditem',{sender:this,item:item});};this.getItemAt=function(index){returnthis._element.childNodes[index]._control;};this.removeItemAt=function(index){varel

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫(huà)的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無(wú)此問(wèn)題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫(kù)負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭(zhēng)議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無(wú)法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。