AS3:接口实现另一个接口

时间:2013-02-28 10:37:11

标签: actionscript-3 oop actionscript flash-builder

我对此代码编译感到惊讶,但这是什么意思?

public interface IBar {}
public interface IFoo implements IBar {}

1 个答案:

答案 0 :(得分:4)

无法编译,因为界面不能implement其他界面,但可以extends

public interface IFoo extends IBar {}

您的代码必须导致错误:

1084: Syntax error: expecting leftbrace before implements.