A virtual table, or vtable, is a technique used to implement dynamic dispatch
0
votes
1answer
29 views
compile a Qt single file from command line: undefined reference to vtable
I'd like to compile a single file QT application from command line, for test in a quick way some features. See the code of the file below.
I'm compiling with:
qmake -project && qmake ...
2
votes
3answers
36 views
Undefined reference to `typeinfo for class' and undefined reference to `vtable for class' [duplicate]
I'm dealing with inheritance in C++. I wanted to write a program for addition and subtraction of two arrays. Heres my code:
#include <iostream>
#include <cmath>
#include <sstream>
...
4
votes
1answer
91 views
Why Are Vtables Not Being Implemented Correctly On Embedded Platform?
I am developing code for an embedded system (specifically, the PSoC 5, using PSoC Creator), and writing in C++.
While I've overcome most hurdles with using C++ , first off compiling in C++ using the ...
0
votes
2answers
23 views
“Undefined reference to vtable in Line ”in constructor
I'm getting the error message stated in the title. I'm trying to construct a class Line which has inherited the class Shape. I get an error in the
Shape(color) {}
execution in the line ...
0
votes
0answers
12 views
Compatibility of GObject and COM object models
GObject implements objects in plain C by using a handful of conventions: Static methods are just functions taking the instance struct as first argument. Virtual methods are implemented as function ...
3
votes
2answers
79 views
Double indirection in C++ vtables
I wrote this very simple C++ program, and I was wondering about why the compiler lays out the vtable across two pointer dereferences. Here's the C++ program:
class Foo {
public:
virtual void bar() ...
1
vote
3answers
94 views
C++ Container of polymorphic objects with shared vptr
Suppose that I need to store a collection of objects of the same type, but this type can't be defined at compile time. Suppose also that once this type is defined, it never changes. As well known, ...
5
votes
2answers
153 views
Dynamic Dispatch in C using virtual method table
I am hoping to find a hint (preferably by good example) for implementing dynamic dispatch in C.
I am learning C and as practice, I want to translate from Java to C using dynamic dispatch virtual ...
0
votes
1answer
56 views
Undefined reference errors in Qt application [duplicate]
I have a library and example application, driven by CMake. So, there is a class, which I use in library:
sourceeditor.h
#ifndef SOURCEEDITOR_H
#define SOURCEEDITOR_H
#include <QWidget>
...
1
vote
4answers
117 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
...
1
vote
0answers
87 views
Find upper bound of vtable size at runtime
Virtual table of c++ class depends on the number of virtual functions defined.
Do you have any thoughts how to get an upper bound of the v-table size at runtime?
Say I have a pointer to a object, I ...
18
votes
2answers
241 views
C++: Class specialization a valid transformation for a conforming compiler?
Hopefully this isn't too specialized of a question for StackOverflow: if it is and could be migrated elsewhere let me know...
Many moons ago, I wrote a undergraduate thesis proposing various ...
1
vote
1answer
82 views
Virtual table in llvm (llvm-py)
I'm using llvm-py to create a DIY compiler for some artificial and need to have a virtual method table in the globe scope. My concept is to have several arrays of function pointers (one for each ...
1
vote
4answers
208 views
undefined reference to `typeinfo and 'vtable
i'm currently working on a program that employs the user of virtual functions. I am using only one virtual function and have come across what seems to be a common problem with a common solution which ...
13
votes
2answers
256 views
Can C++ compilers optimize repeated virtual function calls on the same pointer? [duplicate]
Suppose I have the following code
void f(PolymorphicType *p)
{
for (int i = 0; i < 1000; ++i)
{
p->virtualMethod(something);
}
}
Will the compiler's generated code ...
0
votes
1answer
40 views
“vtable” in the dexdump result
I'm doing some research on dexdump. Now, there is a question that confuses me.
when you look at the dexdump result, you will find "vtable" in the code like this:
000854: fa20 a900 4300 ...
2
votes
1answer
196 views
Programming Language Idea: Avoiding vtable lookups [closed]
I have been toying with an idea for a programming language for a while now: It would essentially be C++ and Java-like in syntax, meant for systems programming (or really any programming that requires ...
2
votes
4answers
144 views
Can vtable overhead be avoided using a static_cast?
Here is my problem. I have a base class and a derived class which overrides some methods from the base class. For simplicity consider the following example:
struct base
{
virtual void fn()
...
1
vote
0answers
65 views
Virtual table C++ [duplicate]
Possible Duplicate:
Does C++ virtual function call on derived object go through vtable?
I have a question regarding c++ virtual table, specifically for gcc. consider following code
class ...
3
votes
5answers
250 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
115 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* ...
4
votes
6answers
218 views
Invoking virtual method in constructor: difference between Java and C++
In Java:
class Base {
public Base() { System.out.println("Base::Base()"); virt(); }
void virt() { System.out.println("Base::virt()"); }
}
class Derived extends Base {
public Derived() ...
7
votes
1answer
189 views
Explanation of virtual table [duplicate]
Possible Duplicate:
Understanding the vtable entries
Using g++ version 4.6.3, 64-bit machine . I know compiler is free to implement virtual functions any way it wants. I want to know what ...
0
votes
3answers
196 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!
3
votes
2answers
190 views
Optimization of virtual function call
I have a question regarding optimization of virtual function calls. I have read somewhere (and the problem is I can't find the article now) that it might be possible to optimize away the v-table ...
1
vote
2answers
124 views
Confusion over a virtual table
i was asked this question in the interview. How many virtual tables does the following program create and what is the out in each case.
#include <iostream>
using namespace std;
class A
{
...
4
votes
2answers
138 views
Call unmanaged function in struct from VTable
Is it possible to call functions from C#, to an unmanaged function in a struct (via VTable).
For example, I am in-process hooking an application, and I am re-creating the structs for each class (of ...
1
vote
2answers
488 views
c++ undefined reference to `vtable
My question has changed from the other one I have posted. I started out with multiple files and decided to put it all in one main.cpp file for now just to get it working.
main.cpp:
#include ...
0
votes
4answers
188 views
Virtual function mechanism with reference to virtual constructor
This was the question asked to me in one of the interviews.
If Vtable is created in compile time, and vptr is assigned to object in runtime, then why compiler gives compile time error if we have ...
5
votes
2answers
253 views
repeated inline constructor within stack frame causes “pure virtual method called”?
I wonder if any C++ gurus out there could shed some light on this strange situation. One of the examples that comes with the Box2D physics engine is crashing with the message "pure virtual method ...
0
votes
2answers
209 views
Where are virtual tables really stored, and why can't we modify them? [closed]
I know the vtables are stored as read-only in memory to prevent modifications. Which section is exactly storing vtables?
Another question, according to read-only privileges that vtables have, how ...
0
votes
1answer
331 views
Undefined reference to vtable error affected by inline constructor
While there are other questions on stack overflow which deal with the 'undefined reference to vtable' error message. The following code either compiles or doesn't compile depending on whether the ...
1
vote
1answer
242 views
Placing of external virtual tables
From Large-Scale C++ Software Design (Lakos), page 652:
The question is, "In which unique translation unit will the compiler deposit the virtual table definition(s) for a given class?". The trick ...
2
votes
5answers
315 views
Equivalent of C NULL function pointer in C++?
A common practice in C to implement "Object Oriented" is using an array of function pointers. This seems to be similar to the C++ vtable and in essence the C++ virtual functions mechanism is just ...
0
votes
1answer
117 views
Allocating an object for abstact class type if not implemented and missing vtable error if declared and defined
I have to inherit an abstract base class which has 5 virtual functions. If i dont implement those 5 functions I get "Allocating an object for abstact class type if not implemented".
When i declare ...
0
votes
2answers
81 views
why is the base function called instead?
In the following code:
#include <iostream>
using namespace std;
class A {
public:
A() {
cout << " A constructor \n";
sum(2,4);
}
virtual int sum(int a, ...
3
votes
3answers
173 views
Can't the runtime size of instances of a class with virtual methods be optimized more by g++?
I just checked the size of a class containing dozens of virtual methods with g++ (4.7), because I had heard pointers are used for virtual methods and I thought that would be a terrible implementation, ...
2
votes
2answers
143 views
do all instances of the same c++ class share a vtable or would each one get its own?
If Base is a base class and Derived a derived class and there are 25 instances of Derived, how are the vtables set up to be accessed by all the instances? Where are they loaded in the memory?
0
votes
0answers
177 views
g++: Object vpointer is not pointing exactly to the vtable (but close)
I am using g++ (GCC) 3.4.6 (Red Hat 3.4.6-10), to compile a simple test program (given below). The binary is compiled as 64bit, without any optimization flags. Upon examining the process in gdb, I ...
2
votes
2answers
119 views
Questions regarding detouring by modifying the virtual table
I've been practicing detours using the same approach as Microsoft Detours (replace the first five bytes with a jmp and an address). More recently I've been reading about detouring by modifying the ...
6
votes
3answers
348 views
Interface vtable
Do interfaces (polymorphic class solely with pure virtual functions) have a vtable?
Since interfaces do not implement a polymorphic function themself and cant be directly constructed there would be no ...
2
votes
1answer
388 views
c++: vtables and this pointer
I was trying to learn some more about the inner workings of vtables and vpointers, so I decided to try to access the vtable directly using some tricks. I created two classes, Base and Derv, each ...
0
votes
3answers
319 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
73 views
Undifined reference to `vtable in for Base2 class
I have the code below:
// IBase.h
#include <iostream>
class IBase{
public:
virtual string getId();
};
// IBase.cpp
#include "IBase.h"
string IBase::getId(){};
// Base.h
...
1
vote
2answers
169 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
89 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
146 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 ...
4
votes
3answers
65 views
Make library functions use a class derived from a library class
I have a .dll which I can build myself. I have a class, Lion, derived from a class in the library, Cat, which overrides a virtual function, Leap(). I want to create an object of type Lion, pass it to ...
1
vote
1answer
217 views
Virtual function calling wrong function, completely different name in C++ and Cocos2dX
While I see a plethora of Stack Overflow Questions and Answers for virtual functions calling their sub/superclass functions of similar name, I'm getting this:
CCLog("Yay"); //ensure it's called
...
2
votes
3answers
424 views
Java method table
I learned a lot about how C++ manages its virtual tables in the presence of inheritance (multiple, virtual etc.) and how it lays the objects in memory.
Now, Java only has to worry about single line ...
