digitalmars.D.learn - Multiple opCall's
- useo (30/30) Feb 21 2011 Hey guys,
- Mafi (10/40) Feb 21 2011 In an abstract class you can just leave this out. The inheriting class
- useo (9/65) Feb 21 2011 interface like the following:
- Jonathan M Davis (6/80) Feb 21 2011 Or you can use alias. Inside of Invokable class, put
Hey guys, I've a small problem implementing multiple opCall()-methods. At first, I've the following interface: interface Invoker { void opCall(uint i); } ... and an abstract class which inherits from the Invoker-interface like the following: abstract class AbstractInvoker : Invoker { private int myInt; override void opCall(uint i) { /** do nothing */ } void opCall() { opCall(myInt); } } I know... I can remove the opCall(uint i) from the interface, but it's needed for some other classes which implements this method. For those classes the opCall(uint i)-method is needed. But... when I now declare a class like this: class InvokableClass : AbstractInvoker { override void opCall(uint i) { // do something } } and do the following: void main(string[] args) { InvokableClass() ic = new InvokeableClass(); ic(); } I always get the following errors: Error: function InvokableClass.opCall (uint i) is not callable using argument types (). Error: expected 1 function arguments, not 0 But I think opCall() is implemented in the abstract class and should be callable using opCall() instead using opCall(uint i)?
Feb 21 2011
Am 21.02.2011 11:18, schrieb useo:Hey guys, I've a small problem implementing multiple opCall()-methods. At first, I've the following interface: interface Invoker { void opCall(uint i); } ... and an abstract class which inherits from the Invoker-interface like the following: abstract class AbstractInvoker : Invoker { private int myInt; override void opCall(uint i) { /** do nothing */ }In an abstract class you can just leave this out. The inheriting class will then be checked to implement this.void opCall() { opCall(myInt); } } I know... I can remove the opCall(uint i) from the interface, but it's needed for some other classes which implements this method. For those classes the opCall(uint i)-method is needed. But... when I now declare a class like this: class InvokableClass : AbstractInvoker { override void opCall(uint i) { // do something } } and do the following: void main(string[] args) { InvokableClass() ic = new InvokeableClass(); ic(); } I always get the following errors: Error: function InvokableClass.opCall (uint i) is not callable using argument types (). Error: expected 1 function arguments, not 0 But I think opCall() is implemented in the abstract class and should be callable using opCall() instead using opCall(uint i)?Overriding one opCall shadows all other opCalls inherited from the base class. This behaviour is like with any method. Write: override void opCall() { super.opCall(); } to forward to the base class method. AFAIK it's an anti-hijacking machanism.
Feb 21 2011
== Auszug aus Mafi (mafi example.org)'s ArtikelAm 21.02.2011 11:18, schrieb useo:first, I've the following interface:Hey guys, I've a small problem implementing multiple opCall()-methods. Atinterface like the following:interface Invoker { void opCall(uint i); } ... and an abstract class which inherits from the Invoker-classabstract class AbstractInvoker : Invoker { private int myInt; override void opCall(uint i) { /** do nothing */ }In an abstract class you can just leave this out. The inheritingwill then be checked to implement this.it's needed for some other classes which implements this method. Forvoid opCall() { opCall(myInt); } } I know... I can remove the opCall(uint i) from the interface, butusing argument types ().those classes the opCall(uint i)-method is needed. But... when I now declare a class like this: class InvokableClass : AbstractInvoker { override void opCall(uint i) { // do something } } and do the following: void main(string[] args) { InvokableClass() ic = new InvokeableClass(); ic(); } I always get the following errors: Error: function InvokableClass.opCall (uint i) is not callableshould be callable using opCall() instead using opCall(uint i)?Error: expected 1 function arguments, not 0 But I think opCall() is implemented in the abstract class andOverriding one opCall shadows all other opCalls inherited from thebaseclass. This behaviour is like with any method. Write: override void opCall() { super.opCall(); } to forward to the base class method. AFAIK it's an anti-hijacking machanism.Okay, thanks... this helped a lot!
Feb 21 2011
On Monday 21 February 2011 02:47:03 Mafi wrote:Am 21.02.2011 11:18, schrieb useo:Or you can use alias. Inside of Invokable class, put alias AbstractInvokableClass.opCall opCall; That should put all of AbstractInvokableClass' in the overload set for InvokableClass. - Jonathan M DavisHey guys, I've a small problem implementing multiple opCall()-methods. At first, I've the following interface: interface Invoker { void opCall(uint i); } ... and an abstract class which inherits from the Invoker-interface like the following: abstract class AbstractInvoker : Invoker { private int myInt; override void opCall(uint i) { /** do nothing */ }In an abstract class you can just leave this out. The inheriting class will then be checked to implement this.void opCall() { opCall(myInt); } } I know... I can remove the opCall(uint i) from the interface, but it's needed for some other classes which implements this method. For those classes the opCall(uint i)-method is needed. But... when I now declare a class like this: class InvokableClass : AbstractInvoker { override void opCall(uint i) { // do something } } and do the following: void main(string[] args) { InvokableClass() ic = new InvokeableClass(); ic(); } I always get the following errors: Error: function InvokableClass.opCall (uint i) is not callable using argument types (). Error: expected 1 function arguments, not 0 But I think opCall() is implemented in the abstract class and should be callable using opCall() instead using opCall(uint i)?Overriding one opCall shadows all other opCalls inherited from the base class. This behaviour is like with any method. Write: override void opCall() { super.opCall(); } to forward to the base class method. AFAIK it's an anti-hijacking machanism.
Feb 21 2011