Tagged Questions
1
vote
4answers
119 views
Confused about non pure virtual classes in C++, what are they for?
I have a class declared as follow:
class TestFoo {
public:
TestFoo();
virtual void virtualFunction();
void nonVirtualFunction();
};
that I try to implement this way
...
4
votes
5answers
294 views
Why vptr is not static?
Every class which contains one or more virtual function has a Vtable associated with it. A void pointer called vptr points to that vtable. Every object of that class contains that vptr which points to ...
3
votes
4answers
120 views
C++: Accessing Virtual Methods
I'm trying to use the virtual method table to call functions by index in
a class... Suppose we have the following code:
class Base
{
public:
Base() {}
virtual ~Base() {}
virtual Base* ...
0
votes
3answers
222 views
c++: Does a vtable contains pointers to non-virtual functions?
vtable contains pointers to virtual functions of that class. Does it also contains pointers to non-virtual functions as well?
Thx!
0
votes
3answers
332 views
can't fix undefined reference to vtable
I've been searching for a while and have found a lot of threads/pages that involve the problem I have, but I am not able to find
An explanation of why this error occurs
A working solution for my ...
1
vote
2answers
186 views
why Base class and Drive class have same virtual pointer but 2 vtable when initiate a Drive instance
#include <iostream>
using namespace std;
class Base {
public:
Base() {
cout << "In Base" << endl;
cout << "Virtual Pointer = " << (int*)this << ...
0
votes
1answer
95 views
why both constructor of Base class and Drive class run when initialize instance of Drive class
#include <iostream>
using namespace std;
class Base {
public:
Base() {
cout << "In Base" << endl;
cout << "Virtual Pointer = " << ...
0
votes
3answers
149 views
C++: prototype of a virtual pointer
I am not sure if this is documented anywhere.
We all know in case of virtual functions, each class holds a vptr which pointer to an array of function pointers called the virtual table.
I want to know ...
1
vote
3answers
921 views
How Vtable of Virtual functions work
I have a small doubt in Virtual Table, whenever compiler encounters the virtual functions in a class, it creates Vtable and places virtual functions address over there. It happens similarly for other ...
4
votes
5answers
1k views
Number of Virtual tables and Virtual Pointers in a C++ Program
Let say we have below program:
class A
{ public:
virtual fun(){};
};
class B:public A
{ public:
virtual fun(){};
};
int main()
{
A a1;
B b1;
}
My question is how many ...
4
votes
4answers
942 views
When exactly does the virtual table pointer (in C++) gets set for an object?
I know that for any class that has a virtual function or a class that is derived from a class that has a virtual function, the compiler does two things. First, it creates a virtual table for that ...
2
votes
4answers
238 views
Can an empty virtual table exist?
#include <iostream>
using namespace std;
class Z
{
public:
int a;
virtual void x () {}
};
class Y : public Z
{
public:
int a;
};
int main()
{
cout << "\nZ: " << ...
0
votes
2answers
121 views
Impossible linker error
I have a library, libfoo which is made of the following files:
base.hpp
#ifndef BASE_HPP
#define BASE_HPP
class base
{
public:
virtual ~base();
virtual void foo() = 0;
};
...
6
votes
3answers
1k views
C++ Interview: vtable for a class with a pure virtual function
I was asked this interview question today!! (it was a really awkward telephonic interview..):
What is the difference between the vtable for a class with virtual
functions and a class with pure ...
7
votes
1answer
154 views
Alternatives to vtable
Vtables are ubiquitous in most OO implementations, but do they have alternatives? The wiki page for vtables has a short blurb, but not really to much info (and stubbed links).
Do you know of some ...
1
vote
1answer
131 views
Undef ref to vtable in constructor and destructor in non-Q
I've got a base class, GameObject, which currently parents Camera and SolidObject. SolidObject parents Player and GameMap. For some reason I'm only getting undefined references to vtable in the ...
1
vote
2answers
199 views
Flex C++ VTable Error
I am using Flex and Bison to create a compiler. As I am trying to create an AST (Abstract Syntax Tree) for my program, I need to port it to C++. So far I have been successful, until a encountered a ...
1
vote
2answers
92 views
Non virtual functions in a class with virtual functions
Quick question: Do non virtual functions incur the cost of a vtbl lookup in classes with other virtual functions? For example:
Class A
{
virtual void init();
void update();
};
Class B : public ...
0
votes
2answers
336 views
Struct base class as throw exception object
Intuition tells me the simpler the thrown type, the better. Better throw an int than a pointer, better throw a struct than a class. In this case though it is necessary to throw an almost full class ...
2
votes
1answer
606 views
Who calls constructor in virtual inheritance?
#include<iostream>
class base{
public:
base(){std::cout<<"In base";}
};
class dv1:virtual private base {
public:
dv1(){std::cout<<"In DV1";}
};
class dv2:virtual private base {
...
4
votes
1answer
4k views
undefined reference to vtable - virtual member, classes generated by gsoap
gsoap with its tools wsdl2h and soapcpp2 provided me with a soapStub.h file containing the following:
class SOAP_CMAC ns2__SOAPKunden
{
public:
std::string *adresszusatz;
// ...
public:
...
38
votes
10answers
2k views
Alternative virtual mechanism implementations?
C++ supports dynamic binding through virtual mechanism. But as I understand the virtual mechanism is an implementation detail of the compiler and the standard just specifies the behaviors of what ...
2
votes
4answers
313 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 ...
3
votes
0answers
216 views
No “add esp,4” for virtual functions returning std::string
I've been looking at DynObj and decided to do my own experimentation with vftables. I'm working with Visual Studio 2010 and created a console main that instantiates an object with a virtual function ...
3
votes
3answers
399 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 ...
3
votes
2answers
774 views
Virtual Functions Object Slicing
My question is with reference to this question which explains how virtual functions work in case of object slicing which end up calling base class virtual function and Wikipedia article which explains ...
0
votes
2answers
363 views
Incorrect vtable layout for class exported by DLL: request for clarification regarding headers and vtable construction
Although the problem at hand is solved, it has me a little confused as to what data is used to construct the vtables for a class and where the layout for the vtable is stored. If anyone can provide ...
2
votes
4answers
2k views
C++ vtable resolving with virtual inheritance
I was curious about C++ and virtual inheritance - in particular, the way that vtable conflicts are resolved between bass and child classes. I won't pretend to understand the specifics on how they ...
12
votes
6answers
3k views
print address of virtual member function
I am trying to print the address of a virtual member function.
If I only wants to print the address of the function I can write:
print("address: %p", &A::func);
But I want to do something like ...
6
votes
3answers
3k views
Virtual method tables
When discussing sealed classes, the term "virtual function table" is mentioned quite frequently. What exactly is this? I read about a method table a while ago (I don't remember the purpose of the ...
10
votes
4answers
7k views
Virtual Table C++
I read a lot of people writing "a virtual table exists for a class that has a virtual function declared in it".
My question is, does a vtable exists only for a class that has a virtual function or ...
0
votes
6answers
1k views
Is there any relation between Virtual destructor and Vtable
If we write virtual function it adds a vtable in object of that class. Is it true for virtual destructor too ? Is vtable used to implement virtualness of destructor
10
votes
4answers
2k views
C++ Inheritance/VTable questions
Update: Replaced the destructor example with a straight up method call example.
Hi,
If I have the following code:
class a
{
public:
virtual void func0(); // a has a VTable now
void ...
8
votes
7answers
12k views
Virtual functions in C# and Java
How are the virtual functions work in C# and Java ? Does it use same vtable and vpointer concept similar to C++ or is it something totally different?


