Tagged Questions

9
votes
10answers
463 views

When should a virtual method be pure?

I have found some code that I am working with, and was wondering what the best design implementation is. If a base class defines a method as virtual, but implements a empty body as well, thus not ...
5
votes
4answers
1k views

Implement a pure virtual method in Objective-C

I want to go there. Seriously though, how does one implement a pure virtual method in an "Apple" way? Do you use a Protocol with your base class and throw exceptions on those methods?
3
votes
3answers
743 views

C++: pure virtual assignment operator

why if we have pure virtual assignment operator in a base class, then we implement that operator on the derived class, it give linker error on the base class? currently I only have the following ...
3
votes
2answers
335 views

In C++ is it possible to have a defined purely virtual function?

Here's the deal. I have a big class hierarchy and I have this one method that is extended all the way through. The method always has to look at one or two more variable at each new level and these ...
2
votes
4answers
160 views

interface overhead

I've a simple class that looks like Boost.Array. There are two template parameters T and N. One drawback of Boost.Array is, that every method that uses such an array, has to be a template with ...
2
votes
5answers
6k views

Difference between a virtual function and a pure virtual function [closed]

Possible Duplicate: C++ Virtual/Pure Virtual Explained Hi, Need to know what is the difference between a pure virtual function and a virtual function? I know "Pure Virtual Function is a ...
2
votes
4answers
378 views

What is the effect of overriding a (regular) virtual method by a pure virtual method?

Let's say we have class A { public: virtual int foo() { cout << "foo!"; } } class B : public A { public: virtual int foo() =0; } class C : public B { public: ...
1
vote
6answers
226 views

How do I call all functions from sub-classes when they were defined as pure virtual in the super-class?

The main question is how do I implement startTest() so that it calls runTest in all the subclasses. Thanks! /******************* COMPILER TEST *******************/ class archeTest { protected: ...
1
vote
3answers
249 views

How can a base class satisfy the definition of a parent's pure virtual function using another parent's function

I am extending an existing C++ project. I have a base class that derives from two parent classes. One of the parents has a pure virtual function. I want that pure virtual function to be defined by ...
1
vote
3answers
1k views

Pure virtual method called

I understand why calling a virtual function from a constructor is bad, but I'm not sure why defining a destructor would result in a "pure virtual method called" exception. The code uses const values ...
0
votes
1answer
129 views

C++ map.clear() pure virtual method runtime error

I believe the problem may stem from using boost::shared_ptrs as key values. //header file: #include <map> std::map<boost::shared_ptr<foo>, bar> myMap; // Private member variable ...
0
votes
1answer
233 views

c++ forward declaration of pure virtual class

I have a forward deceleration problem. I had a normal class before, called GlobalCWND, it was instantiated and used in another class ProtocolContext. I forward declare the ProtocolContext class in ...