Tagged Questions
The vtable tag has no wiki summary.
32
votes
9answers
1k views
A question about virtual mechanism in C++
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 ...
21
votes
11answers
3k views
When should you not use virtual destructors?
Is there ever a good reason to not declare a virtual destructor for a class? When should you specifically avoid writing one?
15
votes
2answers
429 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 ...
12
votes
3answers
591 views
Virtual dispatch implementation details
First of all, I want to make myself clear that I do understand that there is no notion of vtables and vptrs in the C++ standard. However I think that virtually all implementations implement the ...
10
votes
3answers
813 views
How are java interfaces implemented internally? (vtables?)
C++ has multiple inheritance. The implementation of multiple inheritance at the assembly level can be quite complicated, but there are good descriptions online on how this is normally done (vtables, ...
9
votes
5answers
903 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 ...
8
votes
3answers
268 views
Inheritance Costs in C++
Taking the following snippet as an example:
struct Foo
{
typedef int type;
};
class Bar : private Foo
{
};
class Baz
{
};
As you can see, no virtual functions exist in this relationship. Since ...
8
votes
3answers
350 views
COM method offsets in Delphi
In Delphi, how do I find out the the address of a COM method?
I can hardcode the offsets
//0 is the offset of the QueryInterface method
p := TPonterArray(pointer(SomeInterface)^)[0];
but I would ...
7
votes
6answers
3k views
when is a v-table created in C++?
When exactly does the compiler create a virtual function table?
1) when the class contains at least one virtual function.
OR
2) when the immediate base class contains at least one virtual ...
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
294 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 ...
6
votes
2answers
210 views
How to determine if a C++ class has a vtable?
A friend of mine sent me the following challenge earlier today:
Given the following code, propose an implementation of OBJECT_HAS_VTABLE so the program prints AnObject has a vtable = 0, ...
6
votes
5answers
518 views
understanding vptr in multiple inheritance?
I am trying to make sense of the statement in book effective c++. Following is the inheritance diagram for multiple inheritance.
Now the book says separate memory in each class is required for ...
6
votes
4answers
260 views
How to use the vtable to determine class type
I was recently on an interview for a position where C/C++ is the primary language and during one question I was told that it's possible to use the vtable to determine which class in a hierarchy a base ...
6
votes
3answers
862 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 ...
6
votes
1answer
161 views
Why does the following class have a virtual table?
Suppose I have a diamond inheritance situation as follows:
class A{
public: virtual void foo(){};
};
class B: public virtual A{
public: virtual void foo(){};
};
class C: public virtual A{
...
6
votes
4answers
1k 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 ...
6
votes
7answers
6k 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?
5
votes
4answers
211 views
VTable and Polymorphism
After reading alot about VTables, I still have one unanswered question.
Given the next class:
#include <iostream>
using namespace std;
class Shape {
public:
int* a;
Shape(){
...
5
votes
2answers
194 views
C++ v-table: Part of the language or compiler dependent?
Is the v-table (virtual method table) a part of the C++ specification, or is it up to the compiler to solve the virtual method lookups?
In case it's part of the spec: Why?
(I'd guess that it's ...
5
votes
2answers
316 views
Does C++ have a static polymorphism implementation of interface that does not use vtable?
Does C++ have a proper implementation of interface that does not use vtable?
for example
class BaseInterface{
public:
virtual void func() const = 0;
}
class BaseInterfaceImpl:public BaseInterface{
...
5
votes
1answer
2k views
vtable in polymorphic class of C++ using gdb
How to display vtable using a pointer to base class object having virtual functions?
5
votes
4answers
2k 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 ...
4
votes
1answer
65 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 ...
4
votes
3answers
78 views
is there anyway to rebuild some saved classes from their vtable?
I'm copying some objects into a file and they all are derieved from same class. but I want to be able to call their functions after loading them to do what that class should do, here's what i did ...
4
votes
3answers
217 views
Position-independent code and vtable
How are virtual functions implemented in position-independent code?
I know that if my class has virtual functions, the compiler usually generates a vtable for it that contains addresses of all ...
4
votes
5answers
2k views
Q_OBJECT throwing 'undefined reference to vtable' error
I'm using Qt Creator 2.0.1 with Qt 4.7.0 (32 bit) on Windows 7 Ultimate 32 bit.
Consider the following code, which is a minimum to produce the error:
class T : public QObject, public QGraphicsItem
{
...
4
votes
1answer
152 views
How to set alignment for virtual functions?
I'm developing plug-in for Win32 using mingw and crosscompilation from linux. Although my plugin successfuly loaded by application and I even got an com-interface from app, I cant call functions from ...
4
votes
4answers
696 views
How are vtables implemented in c++ and c#?
Lets have this situation (in c++, in c# classes A,B are interfaces):
class A { virtual void func() = 0; };
class B { virtual void func() = 0; };
class X: public A, public B { virtual void func(){ var ...
4
votes
3answers
262 views
Building a COM object vtable in x86 assembly
I am building a COM object in x86 assembly using NASM. I understand COM quite well and I understand x86 assembly pretty well, but getting the two to mesh is getting me hung up... (by the way, if ...
4
votes
4answers
737 views
Where is pure virtual function located in C++?
Which virtual table will be pure virtual function located? In the base class or derived class?
For example, what does the virtual table look like in each class?
class Base {
virtual void f() =0;
...
4
votes
1answer
539 views
Debugging vtable Linker Errors in GCC
Now and then when using GCC I get cryptic errors like this:
undefined reference to 'vtable for classname'
When it's not caused by a missing library, this not-very-descriptive error message always ...
3
votes
4answers
105 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 ...
3
votes
2answers
108 views
How does the Visual C++ compiler pass the this ptr to the called function?
I'm learning C++ using Eckel's "Thinking in C++". It states the following:
If a class contains virtual methods, a virtual function table is created for that class etc. The workings of the function ...
3
votes
6answers
177 views
Virtual Function Compared to Pointer Casting
The current version of some code I'm using utilises a slightly odd way of acheiving something which I think could be acheived with polymorphism. More concretely we currently use something like
...
3
votes
2answers
183 views
Does virtual inheritance and virtual function use the same vtable?
There is one little related question. But the topic is entirely different.
Now, one concept is about the function resolution and another is about class resolution ? I am wondering that how is it ...
3
votes
3answers
192 views
Do all classes have a Vtable created for them by the compiler?
There are many resources online about VTables. They commonly have the same statement regarding them:
"Whenever a class itself contains virtual functions or overrides virtual functions from a parent ...
3
votes
3answers
164 views
If there are virtual methods, is vtable is going to be created?
If I create a very simple class like this :
class A
{
public :
virtual void foo()
{
}
};
(no virtual destructor) is the compiler going to create vtable?
Or are modern compilers smart ...
3
votes
4answers
269 views
C++ copy constructor - small but important difference
I couldn't figure out what is happening here, thought it is very strange, and after getting to understand the reason I thought sharing the answer would be valuable to somebody's time.
So given this ...
3
votes
6answers
234 views
Low level details of inheritance and polymorphism
This question is one of the big doubts that looms around my head and is also hard to describe it in terms of words . Some times it seems obvious and sometimes a tough one to crack.So the question goes ...
3
votes
0answers
156 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
1answer
149 views
Why Exception occured getting address of COM function?
I am getting the address of a COM function by loading type library (TLB) and iterating over types using ITypeLib and ITypeInfo.
After calling the AddressOfMember function of ITypeInfo I am facing the ...
3
votes
2answers
192 views
How to iterate the vtable of COM coclass?
How can I iterate/access the vtable of COM coclass which will implement the methods of its exposed interfaces?
I need to access the part of the vtable where all addresses of exposed methods of its ...
3
votes
5answers
787 views
Under what circumstances can a vtable pointer be null (or 0x1)?
I am currently debugging a crashlog. The crash occurs because the vtable pointer of a (c++-) object is 0x1, while the rest of the object seems to be ok as far as I can tell from the crashlog.
The ...
3
votes
6answers
609 views
VS2005 C++ broken vtables
I'm currently working on a quite big (and old, sigh) code base, recently upgraded to VS2005 (SP1). Me and my team are changing/updating/replacing modules in this code as we go but we have occasionally ...
2
votes
1answer
35 views
Offset to complete object from subobject
I need to get the front-most address of a complete object even if what I have happens to be a subobject.
The current version of my experimental smart pointer can only compare locations of a complete ...
2
votes
4answers
111 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: " << ...
2
votes
4answers
143 views
Does the C++ spec allow an instance of a non-virtual class to include memory for a vtable pointer?
Does the C++ spec allow an instance of a non-virtual class to include memory for a vtable pointer? I am asking this, because a colleague said he once used a C++ compiler where the following happened:
...
2
votes
2answers
291 views
What can cause VTable pointer to be 0xdddddddd in Win32 debug build?
I am debugging a defect and have narrowed it down to the vtable pointer for an object being 0xdddddddd. This answer indicates that Win32 debug builds will generally set dead memory, or memory which ...
2
votes
1answer
245 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 {
...