[]关于接口实现问题
API中提供了定义接口和实现接口的方法,请问下定义接口的时候不需要设置必须实现的接口方法吗?如果某个类实现了该接口,是否需要实现特定的方法呢?如果没有,那接口的作用是什么呢?
interface(name:String, superClass:Function):void
[static] JS中定义接口。如 Laya.interface("a.b.myinterface", null); Laya.interface("a.b.myInterface2", BaseInterface);
imps(prototypeChain:*, superInterfaces:Object):void
[static] JS中实现接口。如: 使Myclass实现接口a.interface。 Laya.imps(Myclass.prototype, { a.interface: true}; 使MyClass2实现接口a.interface和a.interface2。 Laya.imps(MyClass2.prototype, { a.interface: true, a.interface2: true};
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
Aar0n
赞同来自: