AS3 - 如何扩展此功能

时间:2015-05-30 15:32:32

标签: function actionscript-3 extend

这是“gordz()”函数的第一个类

public class Model extends Object implements IModel
   {

     public static function gordz() : void
      {
          newobject = gallas.pop();
      }

}

现在我尝试覆盖该功能,但我仍然希望执行旧代码...如何才能正确扩展此功能?

 public class LOL extends Model
   {
       override public static function gordz() : void
       {
         ... //New code + execute old code
       }  

   }

1 个答案:

答案 0 :(得分:-1)

既不超级

  

You cannot use the super statement in a static method.

也不会覆盖

  

You cannot use the override attribute on any of the following:

     

[...]

     

静态方法

可以在静态方法中使用。

无论你想做什么,都应该以不同的方式完成。