Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Multiple Inheritance in ActionScript 3? Is it possible? I have read somewhere that it is possible in as3.

If yes then how?

this is my Doucument Class A.as

package
{
    import flash.display.MovieClip;

    public class A extends MovieClip implements B
    {    
        public var value1:Number=10;

        public function A()
        {
            trace("A Class Constructor");
        }
        public function hit():void
        {
            trace(value1+' from hit');   
        }
    }
}

Another is interface B.as

    package
    {
       public interface B
       {
          trace(' interface ');
          function hit():void;
       }
    }

Thanks in advance.

share|improve this question
7  
You only can extend from a single class, but you can implement as many interfaces as you like. What exactly are you trying to do when you say "Multiple Inheritance"? – 32bitkid Feb 2 '12 at 5:16
Voted down for un-clear question. The person wants Multiple Implements – WORMSS Feb 2 '12 at 9:11
@WORMSS: this is called multiple inheritance using interface. – Swati Singh Feb 2 '12 at 9:21
1  
Its not inheritance.. The class is not inheriting.. What functionality have you inherited? None.. You have reported that there will be some publicly available methods on your class, that is it. No functionality behind those methods unless your class provides it itself. So therefore Multiple Implements not Multiple Inheritance – WORMSS Feb 3 '12 at 15:05
@wormss 100% correct, -1 for not asking clearly. your question makes sense without the code snippet. but the snippet making your question no sense. – Noob AS Three Developer Nov 22 '12 at 10:17

4 Answers

up vote 64 down vote accepted

Multiple inheritance is not possible in AS. But with interfaces you can mimic some of the functionality of multiple inheritance. MI has major flaws, most notably the diamond problem: http://en.wikipedia.org/wiki/Diamond_problem That's why many languages don't support MI, but only single inheritance. Using interfaces it "appears" you apply MI, but in reality that is not the case since interfaces don't provide an implementation, but only a promise of functionality.

interface BadAss{
    function doSomethingBadAss():void;
}

interface Preacher{
    function quoteBible():void;
}

class CrazyGangsta implements BadAss, Preacher{
    function quoteBible():void{
        trace( "The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men." );
    }
    function doSomethingBadAss():void{
        //do something badass
    }
}

var julesWinnfield : CrazyGangsta = new CrazyGangsta();
julesWinnfield.doSomethingBadAss();
julesWinnfield.quoteBible();

//however, it mimics MI, since you can do:

var mofo : BadAss = julesWinnfield;
mofo.doSomethingBadAss();
//but not mofo.quoteBible();

var holyMan : Preacher = julesWinnfield;
holyMan.quoteBible();
//but not holyMan.doSomethingBadAss();

P.S.: In case you'd wonder: There's no diamond problem with interfaces since an implementor of the interfaces must provide exactly one implementation of each member defined in the interfaces. So, even if both interfaces would define the same member (with identical signature of course) there will still be only one implementation.

share|improve this answer
Technically this is not multiple inheritance which is not possible AS. However looking at the comment @swati-singh made avobe, it looks like he wants multiple interface and this would be a correct solution for that. – lordofthefobs Feb 2 '12 at 9:27
20  
That's why I started my answer with: "Multiple inheritance is not possible in AS." :) – Creynders Feb 2 '12 at 9:33
@Creynders: thanks a lot, i have got my mistake...:) – Swati Singh Feb 3 '12 at 11:40
+1 for modeling CrazyGansta BadAss Preacher Jules using OOP. He won't be striking you down with great vengeance and furious anger. – Hyangelo Feb 3 '12 at 16:30

Well there is no possibility of multiple inheritance directly in AS3 like many of other OOP languages.

OOP is about reusing code and like most of us want to reuse the code written in multiple classes. So if you really mean to reuse the code (logic) instead of just the signatures you might want to consider composition or deligation approaches and probably this is what you have read somewhere, like you said.

In composition what you do is instead of inheriting a baseclass into subclass, you will have an instance of the baseclass in a subclass and have all the methods

package
{
    public class BaseClass1
    {
        public function someMethod( )
        {
            trace("This is from the BaseClass1");
        }
    }
}

package
{
    public class BaseClass2
    {
        public function anotherMethod( )
        {
            trace("This is from the BaseClass2");
        }
    }
}
package
{
    //Composition
    public class HasBase
    {
        private var baseClass1:BaseClass1;
        private var baseClass2:BaseClass2;
        public function HasBase( )
        {
            baseClass1=new BaseClass1( );
            baseClass2=new BaseClass2( );
        }
        public function someMethod( )
        {
            baseClass1.someMethod( );
        }
        public function anotherMethod(){
            baseClass2.anotherMethod();
        }
    }
}

This is not a hack but actually a real and practical implementation adopted by experienced developers in many design patterns.

Hope this helps

share|improve this answer

You can do the multiple inheritance using the interface.

  1. Define Class A,B and C. and Define interface for the Class B and C respectively iB and iC.
  2. Just extends the Class C to Class A using "extend" keyword - Direct Inheritance of class
  3. extends your interface iC to the interface iB.
Just check code as per your requirement:

package
{
  import flash.display.MovieClip;
  public class A extends MovieClip implements B
  {
      public var value1:Number=10;
      public function A()
      {
          trace("A Class Constructor");
      }
      public function hit():void
      {
          trace(value1+' from hit');
      }
      public function print():void
      {
          trace("Print Method Called");
      }
  }
} 

package
{
  public interface B extends D 
  {
      function hit():void;
  }
}

package
{
  public class C implements D
  {
      pulic function C()
      {
          trace("C Class Constructor");
      }
      public function print():void
      {
          trace("Print Method Called");
      }
  }
}

package
{
  public interface D
  {
      function print():void;
  }
}
share|improve this answer
can you implement this in my example? – Swati Singh Feb 2 '12 at 9:13
Hi Swati, i can implement in your example. But can you send me your example code to me via email because in your question you mention only Interface B, Class A but not mentioned interface C. So I need code . my email address is mrugeshapatel@gmail.com – Mrugesh Feb 2 '12 at 9:23
Mrugesh: i have wriiten C by mistake. i have updated my code please check it. thanks for your reply. – Swati Singh Feb 2 '12 at 9:28
Which another class you want to extends with your class A? – Mrugesh Feb 2 '12 at 9:29
For now i just want to implement B Class. Because B is an interface. – Swati Singh Feb 2 '12 at 9:32
show 6 more comments

This is funny, because multiple inheritance is possible in AS, however, only for interfaces :)

So, the code below is perfectly valid:

public interface IFoo extends IBitmapDrawable, IDataInput, IEventDispatcher { }

It is not possible for classes. (You need not to only inherit function definition, declaration is also an asset). But this is rarely used, and, in general, AS3 class system is trying to borrow from Java all the worst practices it provides in this field. Which means it is rigid and simplistic. Interfaces, much like in Java carry along a lot of problems, probably many more then those of the Diamond problem. For instance, an interface may force you to import a lot of dependencies, it, although it was designed for to allow more generic programming, in fact, limits you even further. And with all that it is not a real type, so, from the compiler standpoint, had you typed your object to an interface, or to nothing at all - same thing, it doesn't know what the real type is.

So, if I am allowed to advise, use composition. Explicit is always better then implicit. If your object (A) has to behave like B and C at the same time, let it have A.asB() and A.asC() methods each returning a part of A responsible for being either B or C. This has a disadvantage of being more verbose, but it is most straight forward way to deal with the problem.

share|improve this answer
I think I couldn't disagree more. w/o using interfaces how would you swap implementations for instance? Let's say I've got a service class that loads data from a REST service. But later on, for whatever reason, it's decided that we'll be using SOAP services instead. When using interfaces it's simply a matter of creating a new service class that implements the same interface as the REST service class and instantiating the new class instead of the old one. W/o interfaces you'll have to change all references to the REST service by the new one. – Creynders Feb 3 '12 at 10:21
Always aim to add to the system instead of modifying it, because modification holds the danger of introducing new bugs to already tested parts. Speaking of testing, doing TDD in a strictly typed language w/o using interfaces is pure madness. – Creynders Feb 3 '12 at 10:22
You probably didn't read my post and disagreeing to something I didn't say. I'll try to put it shorter: interfaces in general, not their particular kind that exists in AS3, are a bad tool. Because, although they would help you solve what you described in your example, they have a whole lot of other disadvantages. Lisp or ML are strictly typed languages, but there's no role/use for interfaces in there. Python solves the same problem differently and better. – wvxvw Feb 3 '12 at 21:40
Another aspect of what you suggested (and I see this done a lot in the enterprise-kind of programming, where AS3 tries to copy all the worst from Java) is that by allowing interfaces to pile up, one will create huge classes, containing hundreds of methods, which is entirely against the universal best practices (such as modularity for eg.) – wvxvw Feb 3 '12 at 21:42
Well I did read your post, but probably didn't get it. Obviously interfaces aren't ideal, but they're still a lot better than not using them at all. And sure, they can be misused, as anything can. But the solution you propose can lead to a far bigger mess, so using the same logic, it's definitely not better than using interfaces. – Creynders Feb 4 '12 at 9:06
show 10 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.