On Fri, Jun 3, 2011 at 09:46, Benjamin Dreux <[email protected]> wrote:

> Hi
>
> Is it possible to have a key "members" in an abstract class (class A with
> member : m() ).
> Then derive this class (new class B), and then use the members defined in
> the abstract class ( B.m() ) ??
>

Absolutely. That's a very common use of abstract classes.

Be careful with your terminology, though. B.m() would indicate that m() is a
static class. I think what you mean is:

  var b = new B();
  b.m();

And that will work fine.

Derrell
------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Discover what all the cheering's about.
Get your free trial download today. 
http://p.sf.net/sfu/quest-dev2dev2 
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to