API Docs for: 1.10.1 最后更新日期:2016年03月28日
Google搜索   
Show:

LObject Class

Defined in: utils/LObject.js:1

Available since 1.6.0

LObject 类位于 lufylegend.js 类层次结构的根处。

Constructor

LObject

() public

Defined in utils/LObject.js:1

Available since 1.6.0

Item Index

Methods

Properties

Methods

callParent

(
  • functionName
  • arguments
)
public

Defined in utils/LObject.js:22

Available since 1.6.0

调用父类的函数。

Parameters:

  • functionName String

    函数名

  • arguments Array

    固定值arguments

Example:

function funA(){
    LExtends(this,LObject,[]);
}
funA.prototype.myName = function(){
    return "AAA";
}
function funB(){
    LExtends(this,funA,[]);
}
funB.prototype.myName = function(){
    return "BBB";
}
function funC(){
    LExtends(this,funA,[]);
}
funC.prototype.myName = function(){
    return this.callParent("myName",arguments);
}
LInit(1000/50,"legend",800,150,main);
function main(){
    LGlobal.setDebug(true);
    var objB = new funB();
    trace(objB.myName());//BBB
    var objC = new funC();
    trace(objC.myName());//AAA
}

Properties

objectIndex

Int public

Defined in utils/LObject.js:11

Available since 1.6.0

对象的ID