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

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

ID:34017352

大?。?1.50 KB

頁數(shù):6頁

時間:2019-03-03

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

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

1、在Javascript模擬實(shí)現(xiàn)接口、多繼承[模式]2007-01-2517:56?在其他語言中比如C#、Java,接口方法在定義的時候都是未實(shí)現(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){if(x)this._element.style.left=x+'px';

2、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)接口的方法:varextend=function(dest,source){//實(shí)現(xiàn)接口dest=self

3、

4、{};for(propertyinsource){if(!

5、dest[property])//如果dest也就是類沒有同名的方法,則用接口默認(rèn)實(shí)現(xiàn)方法。dest[property]=dest[property];}returndest;}extend(Menu.prototype,IClassManager);extend(MenuItem.prototype,IClassManager);這樣Menu和MenuItem都具有了Class的管理能力。?通過extend,Menu和MenuItem可以實(shí)現(xiàn)任意的接口,并且同時實(shí)現(xiàn)多個接口。在實(shí)現(xiàn)接口之前Menu和MenuItem還可以有一次繼承的機(jī)會:Menu.prototype=newBaseCla

6、ss();//最簡單的繼承方式然后再實(shí)現(xiàn)接口:extend(Menu.prototype,IClassManager);?這樣就類似單根繼承+多接口實(shí)現(xiàn),很像C#或者Java吧下面是完整的代碼:?(function(){varEvent=joyeach.util.Event;varextend=function(dest,source){//實(shí)現(xiàn)接口dest=self

7、

8、{};for(propertyinsource){if(!dest[property])dest[property]=dest[property];}returndest;}//ClassManagerInterfacev

9、arIClassManager={hasClass:function(className){varreg=newRegExp('(?:^

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

11、$)');returnreg.test(this._element['className']);},addClass:function(className){if(this.hasClass(el,className))?return;?this._element['className']=[this._element['className'],className].join('');}}/***菜單類

12、*/joyeach.controls.Menu=function(options){this._element=null;this.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._el

13、ement.appendChild(item._element);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ù)覽五頁,下載文檔查看全文

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

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