Tagged Questions
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. This concept is a very important part of the polymorphism portion of object-oriented programming (OOP).
28
votes
11answers
3k views
Why C# implements methods as non-virtual by default?
Unlike Java, why C# treats methods as non-virtual functions by default? Is it more likely to be a performance issue rather than other possible outcomes?
I remind reading a paragraph from Anders ...
25
votes
7answers
2k views
At as deep of a level as possible, how are virtual functions implemented?
We all know what virtual functions are in C++, but how are they implemented at a deep level?
Can the vtable be modified or even directly accessed at runtime?
Does the vtable exist for all classes, ...
23
votes
7answers
6k views
Can a member function template be virtual?
I have heard that member function templates can't be virtual. Is this true?
If they can be virtual, what is an example of a scenario in which one would use such a function?
23
votes
7answers
15k views
Safely override C++ virtual functions
I have a base class with a virtual function and I want to override that function in a derived class. Is there some way to make the compiler check if the function I declared in the derived class ...
19
votes
13answers
2k views
What is the performance cost of having a virtual method in a C++ class?
Having at least one virtual method in a C++ class (or any of its parent classes) means that the class will have a virtual table, and every instance will have a virtual pointer.
So the memory cost is ...
18
votes
11answers
5k views
Virtual functions and performance - C++
In my class design, I use abstract classes and virtual functions extensively. I had a feeling that virtual functions affects the performance. Is this true? But I think this performance difference is ...
18
votes
6answers
10k views
Where do “pure virtual function call” crashes come from?
I sometimes notice programs that crash on my computer with the error: "pure virtual function call".
How do these programs even compile when an object cannot be created of an abstract class?
15
votes
2answers
428 views
Understanding the vtable entries
For this code:
class B1
{
public:
virtual void f1() {}
};
class D : public B1
{
public:
void f1() {}
};
int main ()
{
B1 *b1 = new B1();
D *d = new D();
return 0;
}
After ...
15
votes
8answers
1k views
Why would a virtual function be private?
I just spotted this in some code:
class Foo {
[...]
private:
virtual void Bar() = 0;
[...]
}
Does this have any purpose?
(I am trying to port some code from VS to G++, and this caught my ...
15
votes
4answers
11k views
virtual assignment operator C++
Assignment Operator in C++ can be made virtual. Why is it required? Can we make other operators virtual too?
14
votes
2answers
348 views
C++: Pointer to monomorphic version of virtual member function?
In C++, it's possible to get a pointer to a (non-static) member function of a class, and then later invoke it on an object. If the function was virtual, the call is dispatched dynamically depending on ...
14
votes
19answers
3k views
Performance penalty for working with interfaces in C++?
Is there a runtime performance penalty when using interfaces (abstract base classes) in C++?
13
votes
9answers
1k views
Can you cache a virtual function lookup in C++?
Say I have a virtual function call foo() on an abstract base class pointer, mypointer->foo(). When my app starts up, based on the contents of a file, it chooses to instantiate a particular concrete ...
12
votes
9answers
4k views
Template or abstract base class?
If I want to make a class adaptable, and make it possible to select different algorithms from the outside -- what is the best implementation in C++?
I see mainly two possibilities:
Use an abstract ...
11
votes
3answers
179 views
About multiple inheritance and defining virtual function
I have a multiple inheritance scenario without virtual base classes like this:
Ta Tb
| |
B C
\ /
A
Ta and Tb are two different template classes that both declare a virtual function ...
11
votes
6answers
820 views
Use-cases of pure virtual functions with body?
I recently came to know that in C++ pure virtual functions can optionally have a body.
What are the real-world use cases for such functions?
11
votes
3answers
286 views
Virtual tables on anonymous classes
I have something similar to this in my code:
#include <iostream>
#include <cstdlib>
struct Base
{
virtual int Virtual() = 0;
};
struct Child
{
struct : public Base
{
virtual ...
11
votes
6answers
993 views
Why all java methods are implicitly overridable?
In C++, I have to explicitly specify 'virtual' keyword to make a member function 'overridable', as there involves an overhead of creating virtual tables and vpointers, when a member function is made ...
10
votes
3answers
238 views
Why does g++ store class names in the compiled binary?
I noticed that If I run strings on my program which was compiled by g++ the output contains the names of various classes that it uses.
The program was compiled with -O3 and without -g or -p, and the ...
10
votes
9answers
709 views
Virtual functions should not be used excessively - Why?
I just read that we should not use virtual function excessively. People felt that less virtual functions tends to have fewer bugs and reduces maintenance.
I'm not able to get what kind of bugs and ...
10
votes
7answers
1k views
Is there any reason not to make a member function virtual?
Is there any real reason not to make a member function virtual in C++? Of course, there's always the performance argument, but that doesn't seem to stick in most situations since the overhead of ...
9
votes
6answers
504 views
Ways to detect whether a C++ virtual function has been redefined in a derived class
In brief: From a C++ base-class pointer which points to an instance of a derived class, how can one determine at run-time whether a non-pure virtual function (with an implementation in the base class) ...
9
votes
1answer
289 views
Deleting virtual functions in C++0x
It isn't clear what happens if I delete a virtual method in C++0x:
virtual int derive_func() = delete;
Does this mean this class and everything that inherits from it can not define/implement the ...
9
votes
7answers
403 views
Behavior of virtual function in C++
I have a question, here are two classes below:
class Base{
public:
virtual void toString(); // generic implementation
}
class Derive : public Base{
public:
...
9
votes
4answers
854 views
Public virtual function derived private in C++
I was trying to figure out what happens when a derived class declares a virtual function as private. The following is the program that I wrote
#include <iostream>
using namespace std;
class A
{
...
9
votes
6answers
3k views
Overriding public virtual functions with private functions in C++
Is there is any reason to make the permissions on an overridden C++ virtual function different from the base class? Is there any danger in doing so?
For example:
class base {
public:
...
8
votes
4answers
275 views
In C++, does overriding an existing virtual function break ABI?
My library has two classes, a base class and a derived class. In the current version of the library the base class has a virtual function foo(), and the derived class does not override it. In the next ...
8
votes
2answers
1k views
C++ vs. C++/CLI: Const qualification of virtual function parameters
[All of the following was tested using Visual Studio 2008 SP1]
In C++, const qualification of parameter types does not affect the type of a function (8.3.5/3: "Any cv-qualifier modifying a parameter ...
7
votes
2answers
114 views
Overloading virtual functions of the same name from different base classes. Is it possible?
The title is probably confusing.
Suppose we have the following set up;
class A
{
public:
virtual void fn() = 0;
};
class B
{
public:
virtual int fn() {};
};
class C: public A, public B
{
...
7
votes
1answer
145 views
Can one extend virtual interface without recompilation of client code?
A library provides a class with virtual functions. Can this class be extended with new virtual functions without recompiling binaries dynamically linked to the library?
I beleive this is not possible ...
7
votes
6answers
263 views
Why bother with virtual functions in c++?
This is not a question about how they work and declared, this I think is pretty much clear to me. The question is about why to implement this?
I suppose the practical reason is to simplify bunch of ...
7
votes
3answers
477 views
C++ calling completely wrong (virtual) method of an object
I have some C++ code (written by someone else) which appears to be calling the wrong function. Here's the situation:
UTF8InputStreamFromBuffer* cstream = foo();
wstring fn = L"foo";
DocumentReader* ...
7
votes
3answers
1k views
c++ virtual function return type
Is it possible for an inherited class to implement a virtual function with a different return type (not using a template as return)?
7
votes
7answers
753 views
Virtual Methods or Function Pointers
When implementing polymorphic behavior in C++ one can either use a pure virtual method or one can use function pointers (or functors). For example an asynchronous callback can be implemented by:
...
7
votes
4answers
908 views
What's the advantage of this indirect function call?
I found the following code in a library:
class Bar {
public:
bool foo(int i) {
return foo_(i);
}
private:
virtual bool foo_(int i) = 0;
};
Now I'm wondering: Why would you use this ...
7
votes
6answers
4k views
Arduino C++ code: can you use virtual functions and exceptions?
Following up on this comment from the question Writing firmware: assembly or high level?:
When compiling C++ code for the Arduino platform, can you use virtual functions, exceptions,etc. Or would ...
7
votes
10answers
4k views
Simulating a virtual static member of a class in c++?
Is there anyway to have a sort of virtual static member in C++?
For example:
class BaseClass {
public:
BaseClass(const string& name) : _name(name) {}
string GetName() const { ...
6
votes
1answer
109 views
How do I suppress C++ vtable generation for pure virtual classes using G++?
Supressing C++ vtable generation can be done in MSVC using the __declspec(novtable) attribute. However, it seems that there is no equivalent attribute for the GNU C++ compiler. The fact is that ...
6
votes
3answers
178 views
What if I don't heed the warning “hides inherited member. To make the current member override that implementation…”
This is maybe a fine point, but it concerns the warning that the compiler issues if you do something like:
class A
{
public virtual void F() { }
}
class B : A
{
public void F() { }
}
Then ...
6
votes
7answers
122 views
How to know when function has to be virtual?
While describing a class, how to know when function has to be virtual?
I know what virtual function means, but I just can't figure out when I should make them virtual
Thanks
6
votes
2answers
981 views
Exception specification when overriding a virtual function
Consider the following code:
class A
{
public:
virtual void f() throw ( int ) { }
};
class B: public A
{
public:
void f() throw ( int, double ) { }
};
When compiled, it says that derived ...
6
votes
3answers
1k views
Are there alternatives to polymorphism in C++?
The CRTP is suggested in this question about dynamic polymorphism. However, this pattern is allegedly only useful for static polymorphism. The design I am looking at seems to be hampered speedwise ...
6
votes
9answers
853 views
If classes with virtual functions are implemented with vtables, how is a class with no virtual functions implemented?
In particular, wouldn't there have to be some kind of function pointer in place anyway?
5
votes
4answers
142 views
Changing return type of a virtual function when it is a smart pointer
In C++ we can do this:
struct Base
{
virtual Base* Clone() const { ... }
virtual ~Base(){}
};
struct Derived : Base
{
virtual Derived* Clone() const {...} //overrides Base::Clone
};
...
5
votes
4answers
103 views
Question with virtual functions
I have two classes:
class x {
public:
virtual void hello() {
std::cout << "x" << std::endl;
}
};
class y : public x {
public:
void hello() {
std::cout << "y" << ...
5
votes
2answers
198 views
C++ Base constructor calling with parameter that will be constructed in the derived constructor
QUESTION 1)
class Base {
Base(std::string name);
virtual std::string generateName();
}
class Derived : Base {
Derived();
virtual std::string generateName();
}
here comes the ...
5
votes
7answers
749 views
virtual function == function pointer?
A set of function pointers grouped
into a data structure are often
referred to as a virtual function
table (VFT).
The above statement makes me feel that virtual function == function ...
5
votes
5answers
317 views
Can someone explain C++ Virtual Methods?
I'm learning C++ and I'm just getting into Virtual Functions/Methods.
From what I've read (in the book and online), Virtual Methods are methods in the a base class that you can override in derived ...
5
votes
8answers
2k views
C++ virtual function not called in subclass
Consider this simple situation:
A.h
class A {
public:
virtual void a() = 0;
};
B.h
#include <iostream>
class B {
public:
virtual void b() {std::cout << "b()." << ...
5
votes
9answers
335 views
Trouble understanding C++ `virtual`
I'm having trouble understanding what the purpose of the virtual keyword in C++. I know C and Java very well but I'm new to C++
From wikipedia
In object-oriented programming, a
virtual ...