I've been told to make my class abstract:

public abstract class Airplane_Abstract

And to make a method called move virtual

 public virtual void Move()
        {
            //use the property to ensure that there is a valid position object
            double radians = PlanePosition.Direction * (Math.PI / 180.0);

            // change the x location by the x vector of the speed
            PlanePosition.X_Coordinate += (int)(PlanePosition.Speed * Math.Cos(radians));

            // change the y location by the y vector of the speed
            PlanePosition.Y_Coordinate += (int)(PlanePosition.Speed * Math.Sin(radians));
        }

And that 4 other methods should be "pure virtual methods." What is that exactly?

They all look like this right now:

public virtual void TurnRight()
{
    // turn right relative to the airplane
    if (PlanePosition.Direction >= 0 && PlanePosition.Direction < Position.MAX_COMPASS_DIRECTION)
        PlanePosition.Direction += 1;
    else
        PlanePosition.Direction = Position.MIN_COMPASS_DIRECTION;  //due north
}
link|improve this question

1  
When interested, for a discussion on pure virtual and non-pure virtual functions (advantages and disadvantages), I will selfishly redirect to a blog post of me. :) – Steven Jeuris Feb 9 '11 at 18:44
lol. I'll bookmark that that's a good post. – allthosemiles Feb 9 '11 at 18:48
feedback

5 Answers

up vote 14 down vote accepted

My guess is that whoever told you to write a "pure virtual" method was a C++ programmer rather than a C# programmer... but the equivalent is an abstract method:

public abstract void TurnRight();

That forces concrete subclasses to override TurnRight with a real implementation.

link|improve this answer
So does that mean every bit of content it has should be taken out? o.o That's what its looking like. – allthosemiles Feb 9 '11 at 18:38
1  
@allthosemiles: For the abstract methods, yes. The point of an abstract method is that it doesn't have a body. – Jon Skeet Feb 9 '11 at 18:38
2  
pure virtual is a general name, and not language specific – Steven Jeuris Feb 9 '11 at 18:39
Awesome. Thanks! – allthosemiles Feb 9 '11 at 18:39
1  
@Steven: Hmm... possibly, but I've only ever seen it in the context of C++ before. I suspect anyone talking about them is likely to have a C++ background :) – Jon Skeet Feb 9 '11 at 19:04
show 5 more comments
feedback

They probably mean that the methods should be marked abstract.

 public abstract void TurnRight();

You will then need to implement them in the subclasses, as opposed to an empty virtual method, where the subclass would not have to override it.

link|improve this answer
feedback

"Pure virtual" is C++ terminology. The C# equivalent is an abstract method.

link|improve this answer
feedback

http://en.wikipedia.org/wiki/Virtual_function

"In object-oriented programming, a virtual function or virtual method is a function or method whose behaviour can be overridden within an inheriting class by a function with the same signature."

Google is always your friend.

link|improve this answer
feedback

You then don't have an implementation in the Airplane_Abstract Class but are forcing consumers "inheritors" of the Class to implement them.

The Airplane_Abstract Class is unusable until you inherit and implement the abstract functions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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