Tagged Questions
110
votes
9answers
76k views
How do you declare an interface in C++?
How do I setup a class that represents an interface? Is this just an abstract base class?
34
votes
4answers
1k views
Pure virtual functions may not have an inline definition. Why?
Pure virtual functions are those member functions that are virtual and have the pure-specifier ( = 0; )
Clause 10.4 paragraph 2 of C++03 tells us what an abstract class is and, as a side note, the ...
20
votes
5answers
15k views
Why do we need a pure virtual destructor in C++?
I understand the need for a virtual destructor. But why do we need a pure virtual destructor? In one of the C++ articles, the author has mentioned that we use pure virtual destructor when we want to ...
18
votes
6answers
939 views
Under what circumstances is it advantageous to give an implementation of a pure virtual function?
In C++, it is legal to give an implementation of a pure virtual function:
class C
{
public:
virtual int f() = 0;
};
int C::f()
{
return 0;
}
Why would you ever want to do this?
Related ...
12
votes
4answers
450 views
What is the purpose of pure virtual destructor? [closed]
Possible Duplicates:
Under what circumstances is it advantageous to give an implementation of a pure virtual function?
Why do we need a pure virtual destructor in C++?
Compiler doesn't ...
10
votes
1answer
6k views
What is the purpose of __cxa_pure_virtual?
Whilst compiling with avr-gcc I have encountered linker errors such as the following:
undefined reference to `__cxa_pure_virtual'
I've found this document which states:
The __cxa_pure_virtual ...
8
votes
5answers
204 views
Pure virtual destructor definition inside class gives compilation error
The pure virtual destructor in base class should have a definition. Otherwise compiler will generate a call to base class destructor from the derived class destructor during link-time and will cause a ...
8
votes
5answers
295 views
What's the simplest way to satisfy a pure abstract method with methods from other base classes
Edit: Per some comments, by simple I mean a) less code, b) easy to maintain, and c) hard to get wrong.
Edit #2: Also, using containment instead of private inheritance is not objectionable if it does ...
8
votes
5answers
691 views
C++ template duck-typing vs pure virtual base class inheritance
Which are the guidelines for choosing between template duck-typing and pure virtual base class inheritance? Examples:
// templates
class duck {
void sing() { std::cout << "quack\n"; }
};
...
7
votes
2answers
115 views
Change pure virtual to virtual and stay binary compatible
Can I change a pure-virtual function (in a base class) to become non-pure without running into any binary compatibility issues? (Linux, GCC 4.1)
thanks
7
votes
4answers
540 views
What can cause a pure virtual function call in C++?
I teach a C++ programming class and I've seen enough classes of errors that I have a good feeling for how to diagnose common C++ bugs. However, there's one major type of error for which my intuition ...
7
votes
5answers
265 views
A virtual member function is used if it is not pure?
C++03 3.2.2 ...An object or non-overloaded function is used if its name appears in a potentially-evaluated expression. A virtual member function is used if it is not pure...
And then later in 3.2.3 ...
7
votes
5answers
1k views
pure-specifier on function-definition
While compiling on GCC I get the error: pure-specifier on function-definition, but not when I compile the same code using VS2005.
class Dummy {
//error: pure-specifier on function-definition, ...
6
votes
2answers
371 views
Pure virtual function call
I'm using boost.python to make python-modules written in c++. I have some base class with pure virtual functions which I have exported like this:
class Base
{
virtual int getPosition() = 0;
};
...
6
votes
7answers
1k views
Deriving an abstract class from concrete class
Let's say we have a concrete class Apple. (Apple objects can be instantiated.)
Now, someone comes and derives an abstract class Peach from Apple. It's abstract because it introduces a new pure virtual ...
5
votes
4answers
230 views
Doesn't putting a “virtual destructor inside an interface” make it, by definition, not an interface anymore?
So here is the box I am in. I want to understand why it is important to have a "virtual destructor inside your interface class". You will see why that stuff is in quotes if you can hang to the ...
5
votes
4answers
760 views
Should an abstract class' destructor be pure virtual?
I think virtual alone is generally sufficient.
Is there another reason to make it pure virtual than to force derived classes to implement their own destructor? I mean if you allocate something in ...
4
votes
6answers
100 views
Abstract class with pure virtual method - why is it possible to do “Abstract * abs3;”?
Consider the following :
class Abstract
{
public:
virtual void func() = 0;
};
int main() {
Abstract abs1; // doesn't compile
Abstract * abs2 = new Abstract(); // doesn't compile
...
4
votes
4answers
432 views
C++ - calling derived function from abstract base pointer
I have been trying to create a TCP Server model based on inheritance, with varying success. These servers are managed by a singleton whose task it is to shut these servers down and other simple ...
4
votes
2answers
408 views
“pure virtual method called” when implementing a boost::thread wrapper interface
I have a small wrapper which centralize what's relative to threads :
class Thread {
protected:
boost::thread *m_thread;
virtual void work() = 0;
void do_work() {
work();
}
...
3
votes
3answers
147 views
C++ help with pure virtual methods
Consider this demo program:
#include <stdio.h>
class Base
{
public:
virtual int f(int) =0;
virtual int f(){ return f(0); }
virtual ~Base(){ }
};
class Derived : public Base
{
...
3
votes
4answers
269 views
Is calling pure virtual functions indirectly from a constructor always undefined behaviour?
I'm working on building Cppcheck on AIX with the xlC compiler (see previous question). Checker classes all derive from a Check class, whose constructor registers each object in a global list:
check.h
...
3
votes
2answers
185 views
Is this a legal way to implement impure virtual functions?
By an "impure virtual function", I mean pure virtual functions that also have implementations (as described at http://www.gotw.ca/gotw/031.htm) for diagnostic purposes.
The kosher way to implement ...
3
votes
2answers
314 views
keeping private parts outside c++ headers: pure virtual base class vs pimpl
I recently switched back from Java and Ruby to C++, and much to my surprise I have to recompile files that use the public interface when I change the method signature of a private method, because also ...
3
votes
1answer
123 views
Where in the standard is forwarding to a base class required in these situations?
Maybe even better is: Why does the standard require forwarding to a base class in these situations? (yeah yeah yeah - Why? - Because.)
class B1 {
public:
virtual void f()=0;
};
class B2 {
...
2
votes
6answers
144 views
Pure virtual invocation from constructor and destructor
The C++ standard says, Invoking a pure virtual function from a constructor or destructor is forbidden. What is the reason for this? Why should the standard place a restriction like this?
2
votes
1answer
108 views
Why is this class that does not declare any pure virtual member function abstract?
How is the following class Game abstract? And how do I make it concrete so I can create an instance of it?
game.h
#include <JApp.h>
#include <JGE.h>
class Game: public JApp
{
...
2
votes
4answers
99 views
Does it make any sense to define “pure” virtual functions in the base class itself?
The benefit of defining common virtual functions in the base class is that we don't have to redefine them in the derived classes then.
Even if we define pure virtual functions in the base class ...
2
votes
4answers
154 views
C++, diamond inheritance, where/when do pure virtuals need to be implemented?
C++: I have a base class A with a pure virtual function f() and then two classes B and C inherit virtually from A, and a class D that inherits from both B and C (the typical diamond structure):
A ...
2
votes
2answers
71 views
pure virtual declarations in subclasses
i have a a couple c++ interfaces like this:
struct IThese {
virtual void doThesethings() = 0;
}
struct IThose : public IThese {
virtual void doThoseOtherThings() = 0;
}
Notice that IThose ...
2
votes
5answers
131 views
Why pure virtual mechanism doesn't consider inherited functions?
Before asking, I had refer to this older question. But I have still queries.
struct B1 {
virtual void fun () = 0;
};
struct B2 {
void fun () { cout<<"B2::fun()\n"; }
void fun (int i) {}
...
2
votes
2answers
204 views
What is the purpose of adding a defininition for a pure-virtual destructor?
Inspired by: C++ -- why should we define the pure virtual destructor outside the class definition?
What does the following code actually do?
class Object
{
public:
virtual ~Object() = 0;
};
...
2
votes
2answers
827 views
C++'s pure virtual function implementation and header files
I'm having some trouble implementing pure virtual functions inherited from some abstract class, when the classes in question are divided into *.h and *.cpp files. The compiler (g++) tells me that the ...
2
votes
5answers
183 views
What is special about the abstract class mechanism in C++?
I have question that bothers me for few days.
Abstract class is a special type of class that we cannot instantiate, right?. (Which is denoted/specified by giving a "= 0" to at least one method ...
2
votes
3answers
567 views
How to export pure virtual functions from a DLL in C++?
I am having a strange problem that no pure virtual function is exporting from a DLL. DLL compiles and outputs as .dll file to the directory . But it doesn't produce .lib file.
If I give definition ...
2
votes
3answers
547 views
C++ Forward declaration and pure virtual functions
I have a problem using forward declaration and virtual functions. I got the following error message during compilation.
main.cpp:131: error: cannot allocate an object of abstract type ...
2
votes
1answer
91 views
“import” a definition of a function from a base class to implement abstract interface (multiple inheritance in C++)
Say we have a class inheriting from two base classes (multiple inheritance). Base class A is abstract, declaring a pure virtual function foo, the other base class B declares and implements a function ...
2
votes
3answers
498 views
Deriving a class from an abstract class (C++)
I have an abstract class with a pure virtual function f() and i want to create a class inherited from that class, and also override function f(). I seperated the header file and the cpp file.
I ...
2
votes
7answers
5k views
Pure Virtual Method Called
EDIT: SOLVED
I'm working on a multi-threaded project right now where I have a base worker class, with varying worker classes that inherit from it. At runtime, the worker classes become threads, which ...
2
votes
8answers
1k views
Why would I want to use a pure virtual function in C++?
I'm learning about C++ in a class right now and I don't quite grok pure virtual functions. I understand that they are later outlined in a derived class, but why would you want to declare it as equal ...
1
vote
2answers
38 views
Reference variable and virtual functions
I've found a strange behavior while using a reference variable.
Here is class implementations:
class Base {
public:
virtual void Method() = 0;
};
class DerivedA : public Base {
...
1
vote
3answers
46 views
Accessing functions of a class that implement an Interface that are not part of the Interface
I am writing an application in c++.
I have an interface defined with various functions:
class ITest
{
public:
virtual void x()=0;
virtual void y()=0;
}
I then have a class that ...
1
vote
1answer
113 views
Pure virtual functions and unused arguments in child functions in C++
I have the following:
class Parent {
public:
virtual bool foo(vector<string> arg1, vector<string> arg2) = 0;
};
class Child : public Parent {
public:
bool ...
1
vote
3answers
142 views
What does it mean to set the declaration of a function equal to 0? How can you assign an integer to a function?
I was browsing through the sources of a (prefer not to name) GUI Toolkit which wrapped up the Windows API when I found the following function definition in the window class:
virtual LRESULT CALLBACK ...
1
vote
2answers
77 views
Private Inheritance: How do I make object of the Base Class ( which has got pure virtual methods)?
Consider the following code:
class Base
{
protected:
virtual void methodDefinedInBase() = 0;
}
Class Derived: private Base
{
public:
void someMethod();
protected:
virtual void ...
1
vote
3answers
228 views
__purecall problem in VS2010 using virtual function - once method gets a purecall
I have a very odd Problem:
I use one of my base classes: IEventlistener() which gets implemented by many other classes. Most of the time the system works. But now a very strange problem occured.
...
1
vote
3answers
309 views
Vtable placement of completely pure-virtual class
According to my (limited) knowledge of the C++ spec, the vtable of a class with virtual members is placed at the definition of the first non-pure non-inline virtual method. How do compilers handle ...
1
vote
3answers
167 views
What does this line mean? [closed]
Possible Duplicates:
C++ Virtual/Pure Virtual Explained
What's the difference between virtual function instantiations in c++
Why pure virtual function is initialized by 0?
This is ...
1
vote
2answers
281 views
pure virtual function and abstract class
I have the following classes, Base and Derived and when I compile the compiler complains that it cannot create an instance of DLog because it is abstract.
Can someone tell me how I can fix this ...
1
vote
1answer
222 views
Abstract classes in shared library
I have an ordinary abstract class that has a couple of pure virtual methods. The class itself is a part of the shared library. The compilation of the shared library itself is OK. But when the library ...