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

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

ID:33158928

大?。?1.50 KB

頁數(shù):6頁

時間:2019-02-21

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

《javascript模擬實現(xiàn)接口、多繼承》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在應用文檔-天天文庫。

1、在Javascript模擬實現(xiàn)接口、多繼承[模式]2007-01-2517:56?在其他語言中比如C#、Java,接口方法在定義的時候都是未實現(xiàn)的,而我這里模擬的JS接口則是可以在定義的時候?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';}};定義菜單項類:varMenuItem=function(){this.setText=function(){};}其實菜單類和菜單項類都是基于HTMLElement的抽象,因此如果要讓他們可以靈活的定義HTMLElement樣式,那么都需要一組管理className的方法。因此Menu和MenuItem都需要實現(xiàn)IClassManager。輔助實現(xiàn)接口的方法:

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

4、

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

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

7、xtend=function(dest,source){//實現(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

當前文檔最多預覽五頁,下載文檔查看全文

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

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