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).

learn more… | top users | synonyms

1
vote
2answers
33 views

LNK2019 with pure virtual assignment(=) operator in multilevel class hierarchy?

Ok, maybe i'm too fatigued to think about the solution to this problem, I looked a lot about a similar problem on the internet but didn't find one. So here's my terrible code: class X { public: ...
0
votes
4answers
81 views

Calling Virtual function from V-table [closed]

As all the virtual function in C++ is stored in V-table. Overiding takes place in the case of virtual function. I want to ask there is any way by which we can call the Virtual function directly from ...
0
votes
1answer
34 views

Mimic Python (pure) virtual functions like C#

What is the best way in Python to mimic virtual and pure virtual functions like in C#? Currently I use a schema like: class AbstractClass(object): '''Abstract class''' def __init__(self): ...
0
votes
2answers
85 views

c++: Is virtuality skipping generations?

I was expecting to find easily the answer for that one, but searching around yielded nothing. Consider the following: #include <iostream> class Base { public: virtual void whoAmI() { ...
1
vote
4answers
87 views

C++ - Using templates instead of virtual functions

I don't have a precise description of the problem so I'm just asking if this is possible (and if it is, some other information would be great). A programmer told me that not to incur in runtime ...
1
vote
2answers
48 views

C++ clone and create to act as virtual constructor?

I am learning C++ in class and am working on trying to return a pointer to a derived object using a virtual create/clone function. I found this implementation and am about to build around it ...
-10
votes
1answer
75 views

Does a derived class must override a virtual function if it defined a new virtual function [closed]

Consider the following example: class A { virtual foo1() {} } class B { virtual foo2() {} } void main() { A ab = new A(); ab->foo1(); } I see that foo2() is being called and ...
3
votes
2answers
53 views

VC++ debugger - evaluating a virtual function, CXX0052: Error: member function not present

Here is a simplified version of my code: #include <iostream> using namespace std; enum Shapes {circle, rectangle}; class Shape { public: virtual Shapes getType() const = 0; }; class Circle ...
1
vote
4answers
94 views

calling virtual function from constructor

Hello I'm reading Effective C++ and there is the "Item 9:Never call virtual functions during construction or destruction". And I'm wondering if mine code is fine even if it breaks this rule: using ...
0
votes
4answers
67 views

Can derived class have two sets of virtual functions?

Is it possible to have a derived class to have two sets of the same virtual functions as the base class? I'm looking to do something like the following. The idea being able to choose between two ...
3
votes
1answer
35 views

Using the non-virtual-interface idiom, can/will my non-virtual function be inlined ?

I recently decided to use the non-virtual interface idiom (NVI) to design an interface in C++, mostly for the purpose of using a parameter with a default value (thus avoiding problems caused by the ...
1
vote
4answers
81 views

Why in destructors is the virtual table set back to that level?

Following this question - Pure virtual call in destructor of most derived class - I tried some code to check some syntax and discovered that as sucessive destructors are called, they call their ...
0
votes
2answers
66 views

Pure virtual call in destructor of most derived class

I know you shouldn't call any virtual function in the ctor or dtor of the base class, but what about from that of the most derived class? Should be fine right? E.g. class base { ... virtual ...
1
vote
1answer
65 views

C++ virtual method: best way to use base implementation with an addition

Say I have the following classes: class Airplane { virtual bool Fly(uint64_t destinationID) { //Do what an airplane does to be flown. } /* * More function and data ...
0
votes
2answers
62 views

C++: Devirtualize Leaf Classes

In languages like Java, C# and D, final or sealed classes are guaranteed to be leaf classes (classes that no other class inherits from). This allows the compiler top devirtualize method calls to ...
0
votes
2answers
44 views

compilation of abstact class type pointer is successfull?

Compilation of following code is successful, it doesn't run though, i think since the pointer p might be having a virtual ptr but that vptr might not be having anything, that is why it compiles and ...
0
votes
5answers
84 views

Confused with delete keyword opearation in C++

I would like to know how delete works? In main function I have deleted the cfact object. But still the cfact->Hello() works instead of throwing an error. While debugging I found while delete ...
-2
votes
1answer
91 views

What is an abstract class and what is Polymorphism? How and why do i use them? [closed]

What is an abstract or polymorphic class and what are their benefits? Why would one want to use such classes? What should I keep in mind when using such classes? Are there any rules to keep in mind ...
0
votes
2answers
37 views

Object of abstract class type “Rectangle” is not allowed

//QuizShape.h #ifndef QUIZSHAPE_H #define QUIZHAPE_H #include <iostream> #include <iomanip> #include <string> using namespace std; class QuizShape { protected: //outer and ...
0
votes
0answers
26 views

malloc error during linking while building for android

I am getting the following error during the linking process ld(96479) malloc: *** mmap(size=229376) failed (error code=12) *** error: can't allocate region *** set a breakpoint in ...
0
votes
2answers
63 views

Can a virtual member function definition appear outside the class template?

In a project I'm writing, I have class template that I'm using as a base class, and it has a virtual method that derived classes override. The virtual function also has its own implementation. The ...
0
votes
0answers
51 views

std::ostream outputs something wrong

I have created code with some classes, which all are derived from Object class and have virtual method repr, which return Bytes object. Bytes object is just a layer over vector<char>, but is ...
5
votes
4answers
169 views

C++ Polymorphic memory cost

I have this chunk of code: #include <stdio.h> class CoolClass { public: virtual void set(int x){x_ = x;}; virtual int get(){return x_;}; private: int x_; ...
1
vote
1answer
75 views

Automatically implement virtual functions depending on sister classes

Is there an idiom I can use to help with implementing virtual functions that depend on the presence of a base class? For example, I have class B {/* some abstract interface. */}; class A { public: ...
4
votes
3answers
133 views

C++ inheritance calling functions from child on a variable of the parent class

In C++ I have a base class Packet and then a lot of children APIPacket, DataIOPacket etc. Now I want to store an incoming packet and since I don't know the type I store this in a variable: Packet ...
1
vote
1answer
75 views

Virtual function call in constructor [duplicate]

I have this layout class Base { public: virtual void Initialize() { // base Implementation } Base() { Initialize(); } }; class der_1 : public Base { public: der_1() : Base() {} ...
0
votes
2answers
127 views

MFC MessageMap and Virtual functions

MFC uses an efficient way to deal with space consumption and complexity issues involved with virtaul functions. For eg. image below demonstrate how functions in class heirarchy are fetched. This ...
18
votes
2answers
247 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 ...
0
votes
3answers
87 views

Override virtual function through CRTP base class

Old: How can I override a virtual function through a CRTP base class? struct I { virtual void foo() = 0; }; template<class D> struct B { void foo() { } }; // provides implementation of foo in ...
7
votes
2answers
146 views

Whats the cost of calling a virtual function in a non-polymorphic way?

I have a pure abstract base and two derived classes: struct B { virtual void foo() = 0; }; struct D1 : B { void foo() override { cout << "D1::foo()" << endl; } }; struct D2 : B { void ...
1
vote
4answers
65 views

Virtual function call

Here is my hierarchic of classes. I have declare following abstract interface class, which have just one function: class IAuthenticator { public: virtual void CreateJson() = 0; }; After I have ...
0
votes
0answers
45 views

Calling member of Derived class from virtual function

I'm a little bit confused concerning virtual functions. Lets suppose you have Base class with virtual function foo(), and that function then overridden in Derived class class Baseclass { ...
1
vote
2answers
55 views

Default Argument in Virtual Function [duplicate]

Please help me find the reasons behind it: #include <iostream> using std::cout; class A { public: virtual void fun(int a = 5) { cout<<a; } }; class B::public A { public: ...
0
votes
3answers
243 views

C++ Override Pure Virtual Function with Function Pointer

If I have a pure virtual function can it be overriden with a function pointer? Scenario below (I'm aware that it's not 100% syntactically correct): #include<iostream> using namespace std; ...
0
votes
2answers
58 views

PYTHON: virtual method behavior differences for public, private(single underscore) and private(double underscore) methods

I was trying out NVI(Non-Virtual Interface) Idiom in python, and noticed that private(double underscore) methods don't seem to be acting as virtual. class A(object): def a(self): print ...
1
vote
3answers
48 views

Design rationale behind public non-virtual member of a superclass interfering with overriding in a subclass

What is a design rationale behind this: OK: public class A { public virtual void DoWork() { Console.WriteLine("A"); } } public class B : A { private new void DoWork() { ...
1
vote
3answers
89 views

Why don't I get stackoverflow exception in overriding and calling virtual function?

class Program { static void Main(string[] args) { B foo = new B(); foo.DoWork(); Console.ReadLine(); } } public class A { public virtual void DoWork() { ...
1
vote
3answers
79 views

Can you template specialize a subclass that is not templated?

Here is my situation: Base class, no templated type: struct Thing { } ; Templated class, extends that very base class template <typename T> struct VertexWriter : public Thing { ...
5
votes
6answers
199 views

c++ temporary - “pure virtual method called”

As I understand temporaries, the following code should work, but it doesn't. struct base { virtual~base() {} virtual void virt()const=0; }; struct derived:public base { virtual void ...
2
votes
1answer
149 views

How many bytes of extra memory does it take for virtual functions?

There are all kinds of cases from simple to complex structures of virtual functions. What factor determines the number of extra memory it required? For example class A {virtual void F() {} ...
1
vote
3answers
53 views

How to specify template argument for a function in a child?

So I try: class data_ppp { public: template <class T> virtual boost::shared_ptr<T> getData() { return boost::shared_ptr<T>(new T()); } }; class data_child : ...
2
votes
1answer
112 views

How do I use std::bind() to call the base class's version of a virtual function?

I am trying to use std::bind() to create a function that will call the base class version of a virtual function rather than calling the derived class's version. struct Base { virtual void foo() { ...
1
vote
6answers
230 views

“Error: Unresolved external symbol” whenever I use a pure virtual function

I feel like I'm doing something incredibly stupid, but I simply can't figure out what's wrong with my code. I even made a super simplified version of the code and the error still occurs: #include ...
1
vote
5answers
196 views

Interface and virtual functions in C++

I have a question regarding C++ virtual functions. Virtual function has been used in order to notify that in sub-class implementation of that function from sub-class to sub-class may differ. I don't ...
1
vote
0answers
66 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 ...
4
votes
2answers
266 views

How do I overload a virtual function introduced in a parent class?

I have a parent class with one important abstract procedure which I am overloading in many child classes as the example code shown below: TCParent = Class private public procedure SaveConfig; ...
0
votes
2answers
148 views

where is the vptr (virtual pointer) initialized in a class having only parameterized constructors?

Suppose I have a class like this class Base { private: int i; int j; public: Base(int i) { this->i = i; j = 0; } ...
1
vote
2answers
75 views

Calling Virtual methods during construction and destruction

Calling Virtual methods during construction and destruction causes a compiler error? I heard that it is a dangerous thing to do. I know that if I have a Class Base that defines a virtual method ...
4
votes
6answers
225 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() ...
2
votes
2answers
96 views

How to call virtual function of an object in C++ [duplicate]

Possible Duplicate: Overriding parent class’s function I'm struggling with calling a virtual function in C++. I'm not experienced in C++, I mainly use C# and Java so I might have some ...

1 2 3 4 5 7