2
votes
4answers
110 views

Is it OK to call abstract method from constructor in Java?

Let's suppose I have an abstract Base class that implements Runnable interface. public abstract class Base implements Runnable { protected int param; public Base(final int param) { ...
4
votes
3answers
140 views

Alternative to calling a virtual method in C#

I am using NHibernate for my C# pojects and therefore I have several model classes. Lets assume the following example: using System; namespace TestProject.Model { public class Room { ...
2
votes
1answer
135 views

Is it possible to use the template method pattern in the constructor? [duplicate]

Possible Duplicate: Calling virtual functions inside constructors I have a class Shape and its subclass Sphere : //Shape : class Shape { public: Shape(const string& ...
0
votes
4answers
80 views

inheriting constructors of class virtually derived.

I came across this question which asks its output. #include<iostream> using namespace std; class A{ public: int i; A(int j=3):i(j){} }; class B:virtual public A{ ...
0
votes
2answers
96 views

I can't understand what is wrong with the destructors?

I have a class called polygon which is my base class in which I have area and perimeter and I need to derive a rectangle class from it. Right now the program below doesn't work work and it gives me ...
2
votes
2answers
80 views

Junk values - Inheritance in C++

I have a class as follows: class base { protected: int x; int y; int z; public: base(int x, int y, int z) { x = x; y = y; ...
1
vote
2answers
92 views

virtual methods and constructors?

I have chicken<->egg problem. I want to create interface for a container classes, so that I can force implementation of specific attr-accessors and other methods and at the same time I want to be ...
-1
votes
3answers
133 views

Calling virtual functions in constructors

Consider the following program: class Base { private: int m_nID; public: Base() { m_nID = ClassID(); } // ClassID returns a class-specific ID number virtual int ...
11
votes
3answers
448 views

C++ constructors: why is this virtual function call not safe?

This is from the C++11 standard sec 12.7.4. This is rather confusing. What does the last sentence in the text mean exactly? Why is the last method call in B::B undefined? Shoudn't it just call ...
0
votes
1answer
52 views

Ownership issues when dealing with abstract base classes as members

When passing classes as arguments in constructors I end up passing pointers in most cases. The main reason for that is I have to pass abstract classes that cannot be instantiated, and as a reference ...
0
votes
1answer
91 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
2answers
1k views

No Virtual constructors but virtual destructor

If we dont have virtual constructors then why we have virtual destructors? Can constructors also be virtual?
2
votes
5answers
2k views

Can we make a class copy constructor virtual in C++

Can we make a class copy constructor virtual in C++? How to use?
4
votes
2answers
457 views

virtual constructor idiom with smart pointers

I've a hierarchy of polymorphic classes, say a Shape abstract base class together with its derived classes, e.g. Rectangle, Circle, etc. Following the Virtual Constructor Idiom, I was wondering why we ...
3
votes
3answers
481 views

behaviour of virtual function called in constructor or destructor

I have read the some materials about the different behaviour of virtual function called in constructor or destructor between c++ and c#. And i test the below code to confirm that c# could call the ...
1
vote
1answer
126 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
262 views

In C#, is it safe to call virtual method from constructor? [duplicate]

Possible Duplicate: Virtual member call in a constructor In C#, is it safe to call virtual method from constructor? What does the language specification say? Please quote from the spec as ...
8
votes
3answers
1k views

Virtual constructors

I was wondering what is the meaning of a virtual constructor and how would it be used. In addition I know that C++ does not allow for a virtual constructor, and I was wondering why.
3
votes
2answers
535 views

Delphi: Construction not calling overridden virtual constructor

i have an example descendant of TBitmap: TMyBitmap = class(TBitmap) public constructor Create; override; end; constructor TMyBitmap.Create; begin inherited; Beep; end; At run-time i ...
2
votes
3answers
259 views

C#: How to use a derived class's const variable in base's constructor

Thanks in advance, My situation is that I have an abstract class called Vehicle that holds: private List<Tire> m_Tires; The thing is that the number of tires in the list is determined in the ...
3
votes
2answers
226 views

Use virtual constructor to reset to intial state

i do not have any experience with virtual constructors which are available in Delphi. I consider to use virtual ctors in a class hierachy to reset the instance to an initial state like this: A = ...
1
vote
5answers
3k views

Constructors cannot be virtual, why? Not a dupe [duplicate]

Possible Duplicate: Why do we not have a virtual constructor? I know this has been asked before but I didn't understand the complex technical words used in the other answers. I read on a ...
4
votes
4answers
621 views

constructor with virtual function call in c++

Possible Duplicate: Calling virtual functions inside constructors first of all below code is not working visual c++ , but workin with bloodshed output is 0 , but acc. to me it shud be 1 ; ...
4
votes
6answers
783 views

simulate virtual constructor in c++

In my application I have to derive some classes from a base one, the problem is that I want to enforce the derived classed to have 3 particular constructor implementation. As c++ don't have virtual ...
3
votes
1answer
481 views

Where virtual constructors are used?

I read about virtual constructors are used for implementing some design patterns, but didn't understood any need of virtual constructors. So what are virtual constructors and why we really need them?
4
votes
8answers
1k views

Is there any automated way to implement post-constructor and pre-destructor virtual method calls?

Due to the well-known issues with calling virtual methods from inside constructors and destructors, I commonly end up with classes that need a final-setup method to be called just after their ...
26
votes
6answers
13k views

C++ virtual function from constructor

Why the following example prints "0" and what must change for it to print "1" as I expected ? #include <iostream> struct base { virtual const int value() const { return 0; } ...
355
votes
11answers
36k views

Virtual member call in a constructor

I'm getting a warning from ReSharper about a call to a virtual member from my objects constructor. Why would this be something not to do?
3
votes
9answers
7k views

Virtual Constructors

Is there any need of Virtual Constructors? If so can any one post a scenario?