This questions comes from another similar question. Sometimes I have to deal with this case.

Do you know if exist an special name in Object Oriented Programming, for a initial method that has been declared virtual, that is intentionally not abstract, but, does nothing, or does not have any code at all, but, maybe called ?

This example is pseudocode, but, applies to any O.O. programming language:

public class MyBaseClass 
{
  public abstract virtual void OverrideMe();
  public virtual void DoSomething() { cout << "Hello Mars\n" }
  public virtual void MayDoSomething() { /* Nothing, yet */ }
}

public class MyDerivedClass : MyBaseClass
{
  public override void OverrideMe() { cout << "Hello Neptune\n" }
  public override void DoSomething() { cout << "Hello Jupiter\n" }
  public override void MayDoSomething() { cout << "Hello Venus\n" }
}

The method MyBaseClass::MayDoSomething() its the case.

Cheers.

link|improve this question

44% accept rate
May I ask, why you might need such methods? Aren't they should be declared abstract, if they do nothing? Just wondering. – Hnatt Jul 22 '11 at 13:46
@Hnatt Those methods usually are helpers for other methods, not used by themselves. – umlcat Nov 18 '11 at 0:18
feedback

1 Answer

I don't know a name for this in general, but I've heard various names for techniques that use this kind of method. I would say it depends on the specific use.

The only general name I can think of is a NOP method!

link|improve this answer
I know the NOP from some processors assembler, but its restricted to a particular overridable method. – umlcat Jul 2 '11 at 17:09
feedback

Your Answer

 
or
required, but never shown

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