0
votes
1answer
23 views

Linker Command Fail in Xcode with Pure Virtual Objects

I'm a n00b so correct me on anything. I've been working on this for a couple days and have done research but can't seem to solve the issue. This is for a programming class that mainly uses Visual ...
1
vote
1answer
65 views

Retun Genereric Type data from function

I have written the following code. Where the function func() print the header and data. class ICell { public: wstring header; virtual void Fetch() = 0; }; template <class ...
2
votes
4answers
100 views

Segfault when calling virtual function of derived class

I've been having a problem with segfaults when I call virtual function of a derived class. However, these segfaults do not occur if I change the name of the function to be different from the name of ...
0
votes
2answers
73 views

C++ Why I can invoke private virtual function of base class from a drived class?

Herb Sutter's famous article Virtuality, states the following: Guideline #2: Prefer to make virtual functions private. That's easy. This lets the derived classes override the function to ...
2
votes
3answers
64 views

calling the correct virtual method using member function pointer [closed]

In the example below, where I tried to reduce the problem to its minimal, there are 4 classes A,B,C,D., which form an inheritance hierarchy When the program starts, an object d from class D is ...
0
votes
1answer
111 views

Using Virtual functions in C++

I have a small problem using virtual functions in C++ I have a class B which extends class A. Class A{ virtual function 1 // does nothing virtual function 2 // does nothing } class B : public ...
1
vote
2answers
108 views

Is there a way to get the C++ virtual member function address

I searched this article: C++ : Getting function virtual 'address' with member function pointer In order to test if the virtual member function is usually at the beginning address of the ...
0
votes
0answers
33 views

Typedef… What am I doing wrong? [closed]

So, I am trying to hook a virtual function, but when I do this: typedef void ( __thiscall* T_ConnectionClosing )( void* thisptr ); T_ConnectionClosing O_ConnectionClosing; I keep getting an error ...
3
votes
5answers
251 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 ...
0
votes
4answers
83 views

What type of members can I add in a c++ abstract class

Hello lets say I have a abstract class that has a few pure abstract functions and I have a few classes that derive from this class and all the data from these classes eventually becomes similar, I was ...
2
votes
1answer
130 views

Calling virtual method from base class C++

I'm new to C++ and i'm having a hard time figuring out what's wrong with my virtual functions. So, here's what i have: GEntity.h class GEntity { public: //... virtual void tick(void); ...
0
votes
1answer
119 views

pure virtual template functions in a template class

So my instructor handed out some code that I believe does not work at all and I want to get some clarification on it. He used this in his hand out notes (it implies that this is correct). ...
-3
votes
2answers
83 views

C++: virtual functions with multiple derivations

I have the following structure: class A{ public: virtual void fn() = 0; } ; class B : public A{ public: virtual void fn(){ //implB } } ; class Base{ //whatever } ; class C ...
0
votes
1answer
826 views

Included function hides overloaded virtual functions

I am developing a system using OpenCV. This system has a class with a virtual function which has the same name (train) as a virtual function used by OpenCV. When I compile, I get the following ...
4
votes
3answers
445 views

C++: Private virtual functions vs. pure virtual functions [duplicate]

Possible Duplicate: Private virtual method in C++ If I understood correctly from this post (http://stackoverflow.com/questions/2170688/private-virtual-method-in-c), making a virtual ...
3
votes
5answers
1k views

Virtual friend functions for a base class?

I'm in the proccess of learning the language and this is a noob doubt. Is it possible to use a virtual friend function? I don't know if it's possible, I didn't even test it but it could be useful in ...
0
votes
4answers
98 views

Hiding/Virtual Function Usage C++

This is kind of a specific question that I had not been able to find a solution to for quite a while. I have this code: #include <iostream> using namespace std; class Mammal { public: ...
1
vote
4answers
194 views

Implicit inline virtual function implemented in header

Writing a function in a .h file and its implementation right after (implicit inline), while using the virtual keyword: virtual void g(){cout<<"is Inline?"}; Is the virtual functionality ...
0
votes
4answers
49 views

C++ Using a overriden method after passing as superclass

If I have a C++ function/method, for example: getSound(Animal a){ a.printSound(); } and then pass it a Dog object that extends the class Animal but overrides Animal's printSound() method, is ...
2
votes
1answer
387 views

call sub class method from base class specific function

I've got a question concerning handling of virtual function in C++ programming. I have something like this: template<class T> class baseClass { virtual void doSomething(T& t) { ...
3
votes
4answers
116 views

Why i getting unresolved externals error when declaring virtual functions in parent class?

I have this parent class: enum UI_STATE { UI_STATE_SPLASH_SCREEN, UI_STATE_LOGIN_SCREEN, UI_STATE_CHARACTER_CREATION_SCREEN, UI_STATE_CHARACTER_CHOOSE_SCREEN, ...
3
votes
2answers
130 views

C++ virtual method not working

Given the following example: class BaseClass { BaseClass() { }; virtual ~BaseClass() { this->Cleanup(); }; virtual void Cleanup() { // Do cleanup here. }; }; class ...
0
votes
3answers
167 views

C++ Polymorphism on Virtual Functions

I'm trying to figure out how inheritance and polymorphism is handled in C++, it seems its a little different than what I'm used to in Java. I'm trying to return a base class in one of the functions, ...
0
votes
2answers
684 views

Multilevel inheritance/polymorphism and virtual function

I have a multilevel inheritance (from Ship class -> MedicShip class -> Medic class) with virtual function code as below. I suppose the result should be : Medic 10 Medic 10 But it generated ...
0
votes
2answers
469 views

What makes virtual functions so slow? C++ [duplicate]

Possible Duplicate: Virtual functions and performance - C++ I'm trying to refactor my code, and everywhere people say that using virtual functions is a huuuuge nono performance-wise, why? ...
0
votes
0answers
59 views

Which version of virtual function gets called when return type is mismatched

in this scenario which function would get called. it looks similar to covariant classes. In this example: I am getting derived version of message is getting called but not derived2, which is not true ...
-1
votes
3answers
592 views

C++ abstract base class calling own pure virtual function results in “Undefined reference”

I have a base class: class Foo { public: virtual ~Foo() {} static void printFoos() { std::vector<Foo*>::iterator it; ...
4
votes
4answers
540 views

Force calling base class virtual function

i have some events like this class Granpa // this would not be changed, as its in a dll and not written by me { public: virtual void onLoad(){} } class Father :public Granpa // my modification ...
4
votes
2answers
1k views

Calling pure virtual function [duplicate]

Possible Duplicate: Calling virtual functions inside constructors Look at this code. In the constructor of Base class, we can call the pure virtual function using 'this' pointer. Now when I ...
0
votes
1answer
178 views

What is really virtual function for?

I want to understand the purpose of virtual functions. Lets analyse this code where the member function is non-virtual: EXAMPLE 1: struct A {  void foo1() { cout << "foo 1 from A \n"; } ...
1
vote
4answers
276 views

Size of class - C++

I have the following code about object sizes: class A { public: int _i; virtual int getI () = 0; int setI (int i); }; class B : public A { public: int getI (); virtual ...
6
votes
4answers
222 views

C++ : difference of execution time between two call of a virtual function

Consider this code under gcc 4.5.1 (Ubuntu 10.04, intel core2duo 3.0 Ghz) It's just 2 tests, in the first one I make a direct call on virtual fucnion and in the second I call it via a Wrapper class : ...
-5
votes
1answer
191 views

C++ virtual function crash [closed]

So, I'm a bit rusty in C++ so I might ask something really stupid, but I don't find my answer anywhere and I'm running out of time. I'm making my own widgets with the Agar library. That's not that ...
1
vote
3answers
341 views

Virtual Function call at Runtime (std c++)

vtable is an overhead in all base/derived classes when a base class has a virtual function. vtable is supposed to contain an array of function pointers to these virtual functions. Also vtable is "one ...
0
votes
1answer
96 views

Function in BYTE array straight to memory?

Is it possible to allocate virtual memory for a byte array containing a function, write the array in the memory and then somehow execute the function in virtual memory?
0
votes
2answers
158 views

Why is a class' size affected when it contains only a virtual function?

class classWithNoVirtualFunction { public: int a; void x () { char c; c = 'a'; } }; class classWithOneVirtualFunction { public: int ...
1
vote
5answers
130 views

When creating a derived class in C#, is it possible to overwrite a 0 parameter virtual function with an n parameter function?

I checked out MSDN and a couple other sites but I'm still not sure I got an answer for this. If you have a Parent class with a virtual function Init(), can I then--in the derived class--have an ...
1
vote
2answers
115 views

Virtual function keyword

Is there any difference between declaring inherited virtual function in a child class with the "virtual" keyword or not, considering I want to call fun appropriate to my objects' type. Look at the ...
2
votes
3answers
164 views

c++ classes - how do I pass a function to an included class for it to use?

I'm sure this has something to do with virtual functions, but I'm struggling to work out how. Here is my (simplified) situation: Roughly what the program does is have one pair of files (computer.h) ...
2
votes
5answers
382 views

Confused about Virtual Functions C++

I'm a c++ n00b and I'm not sure if I have looked in the right places but I'm confused about this: include <iostream> using namespace std; class Enemy { public: void sayHere() ...
7
votes
5answers
1k views

Are abstract methods and pure virtual functions the same thing?

As far as I know, both abstract methods and pure virtual functions do NOT provide any functionality ... So can we say they're both the same thing ? Also, suppose a class (not necessarily declared as ...
2
votes
5answers
447 views

How to bypass template virtual function to attain my goal?

I know this isn't legal C++ due to the compiler not being able to determine how big exactly the vtable is. I'm looking for alternatives. Basically, I have an abstract base class defining the ...
1
vote
2answers
90 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 ...
4
votes
1answer
521 views

c++ inherit virtual functions

ok say we have the following classes class A { public: virtual void taco() { cout << "Class A" << endl; } }; class B: public A { public: virtual void taco() ...
1
vote
4answers
304 views

c++ virtual function reimplementation

even i think that question is stupid. but i've a little experience. i have a base class that has such method: class A{ virtual void func(int)=0 }; and inherited class class B :public A { ...
1
vote
4answers
291 views

Question about Pure Virtual Functions in C++?

I am reading some C++ text regrading Pure Virtual Functions. As the text says, the form of Pure Virtual Functions declaration, for example, is: virtual void virtualfunctioname() = 0; And the text ...
4
votes
5answers
515 views

Returning abstract datatypes in C++ without dangling pointers

Hallo, I come from a C# background and don't have a lot of C++ experience. To produce clean code I try to separate implementation and interfaces and use inheritance when possible. And when I tried to ...
1
vote
2answers
183 views

Virtual functions - where's the pointer?

An example to start with. class A { public: virtual const char* GetName() { return "A"; } }; class B: public A { public: virtual const char* GetName() { return "B"; } }; class C: public ...
5
votes
10answers
278 views

What is the most concise yet accurate way to describe what a virtual function is in C++?

Being asked to describe what a virtual function is seems to be one of the most common questions in interviews assessing basic C++ knowledge. However, after several years programming C++, I still have ...
2
votes
5answers
700 views

Inheritance of virtual member functions with the same name

class A { A() {}; virtual ~A() {}; virtual void Start() {}; virtual void Start(float a) {}; }; class B : public A { }; class C : public A { virtual void Start(float a) {}; } ... B BObj; ...

1 2