Tagged Questions
0
votes
1answer
69 views
dynamic_cast performing correctly only sometimes
the structure of the problem is such
Food is an abstract base class; Plant, and Animal directly inherit from that.
Herbivore, Carnivore, and Omnivore inherit from Animal,
while Fruits and Nuts and ...
0
votes
2answers
75 views
error C2259: cannot instantiate abstract class; or “how exactly should i be using virtual functions here?”
this involves some pretty tricky inheritance, but bear with me here.
My question isn't so much a specific error, but just "how would i do this specifically?"
the idea is to have an abstract base ...
6
votes
2answers
95 views
this. vs base. for inherited protected non-virtual methods?
Whithin my sub-class, should I refer to an inherited protected non-virtual method as this.Method() or base.Method()?
Using this would allow me to easily hide the method with a new method of the same ...
2
votes
3answers
93 views
Calling pure virtual function in constructor gives an error
class a //my base class
{
public:
a()
{
foo();
}
virtual void foo() = 0;
};
class b : public a
{
public:
void foo()
{
}
};
int main()
{
b obj; //ERROR: ...
2
votes
3answers
141 views
Will “delete this” in a base class pointer delete the derived class object when you have a virtual destructor?
I have a class hierarchy that's three levels deep, like this:
class A {
public:
virtual ~A() {}
}
class B : public A {
public:
virtual ~B() {}
void foo(E *e) {
...
0
votes
2answers
56 views
Virtual, how to use it?
class a
{
public:
a(int);
virtual ~a();
virtual void print();
int getNumber()
private:
int number;
};
class b : public a
{
public:
...
1
vote
2answers
90 views
Can I exclude a base class member from the derived class?
Let's say I have a class called CWindow:
class CWindow
{
public:
virtual bool Create();
};
In the derived class CMyWindow, I want to overload the Create(void) method to Create(int someParam), ...
2
votes
2answers
111 views
C++ virtual functions base return type suggestions
I need a base class that gives me primitive type of data's pointer. I add a function in it. I derived types of class. I used void * to support all primitive types as a return type but it is like old C ...
1
vote
3answers
128 views
C++ Class Design - how to clean up in base-class destructor
I have trouble thinking outside the box with the following issue. I have a class hierarchy:
[BaseClass] --> [Win32Class]
[BaseClass] --> [LinuxClass]
[BaseClass] --> [VxWorksClass]
The ...
5
votes
2answers
134 views
Is using virtual method have only advantage of single instance generation?
I have learnt that the usage of virtual methods provide a default behaviour for a method/function. My query is that, when we can implement a method of same name (as in base class) using "new" in ...
0
votes
2answers
99 views
How to hide virtual method in C++ and keep interface?
I want make a SharedInterrupt class(B) which will serve in series many objects in one interrupt vector. But the derived classes(C..) of SharedInterrupt class(B) must have same ISR() function(func) as ...
0
votes
2answers
84 views
Any way to avoid using virtual m methods in my structure?
I have a set of classes similar to the ones in the example below. However, I would like to allow the user to derive from them without modifying the base classes with additional virtual methods. Is ...
0
votes
3answers
122 views
How to properly use virtual member functions in c++
I am having a problem with the following code, the overriden virtual functions are not executing. Not sure i'm doing wrong here probably a silly mistake. Anyway this is a game project and I have an ...
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?
0
votes
6answers
131 views
Have I implemented a pure virtual function wrong?
EDIT:
I have no updated the question, whilst doing so I realized the scope of the question has completely changed, so I apologize for this. I am dealing with Threads so that static function has to ...
1
vote
6answers
97 views
Does casting actually work when done inside a function call in C++?
My Code:
#include <iostream>
using namespace std;
class A
{
public:
virtual void print(void) { cout << "I am base class" << endl; }
};
class B : public A
{
public:
void ...
1
vote
2answers
116 views
Why do I need to declare a Virtual Method when I can Hide it in derived Class
class clsTestParent
{
public void testNoAbstract()
{
Console.WriteLine("Parent Method Call");
}
}
class clsDerivedTest : clsTestParent
{
public ...
2
votes
2answers
87 views
Executing code after all the overrides of a virtual method
So I have this system set up with a base class DisplayObject.
It has a Render method and a list of other DisplayObjects as it's children. It also contains data about various matrix transformations but ...
0
votes
4answers
690 views
How to call derived class virtual method?
I created these classes:
public abstract class Node
{
public virtual NodeModel CreateModel()
{
throw new NotImplementedException();
}
}
public class Folder : Node
{
public ...
3
votes
3answers
173 views
Does C++ allow multiple levels of virtualness?
I have a base class called Object. PhysicsObject inherits from Object. Ball inherits from PhysicsObject, and SoftBall inherits from Ball. Something like this:
Object
|
PhysicsObject
|
Ball
|
...
0
votes
7answers
180 views
Multiple inheritance of virtual classes
Suppose I have the following code:
class a {
public:
virtual void do_a() = 0;
}
class b {
public:
virtual void do_b() = 0;
}
class c: public a, public b {
public:
virtual void do_a() ...
1
vote
1answer
324 views
Static image variable across multiple classes
I'm currently working in C#, and I have a base class (bullet) that is required to have a variable and subsequent getter (image) because another class expects that behavior (powerup) in order to ...
2
votes
2answers
271 views
How NOT to use virtual inheritance?
I am making a win32 api program. I first created a base class called WinClass and inherited like a dozen other classes from it. Now I need to create a derived class from two classes inherited from ...
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.
1
vote
2answers
532 views
Virtual Template Workarounds
I have a template container class that I derive from called MyContainer. MyContainer defines methods like Get(), Set(), etc. to access individual elements. I'd like to make a bitfield class ...
4
votes
5answers
6k views
Confused between virtual, override, new and sealed override
I'm pretty confused between some concepts of OOPS: virtual, override, new and sealed override. Can anyone explain me about the same. Best would be giving an example or a link for the same.
I am ...
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
{ ...
12
votes
10answers
966 views
When is it appropriate to use virtual methods?
I understand that virtual methods allow a derived class to override methods inherited from a base class. However, when is it appropriate/inappropriate to use virtual methods? It's not always known ...
5
votes
10answers
280 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 ...
1
vote
3answers
45 views
Will overrides be called when class instance was send as if it was type with out overrides?
Having Class B that extends class A and overrides its functions can we be sure that when sending instance of (B*) as if it were type (A*) our overrides we created in class B will be called?
0
votes
2answers
123 views
C++ Inheritance - why my function was not used?
I have a IBase class with virtual void CastData(){} in it. there it is used in another function.
I have another totally unrelated class IC with
virtual void CastData(){
for (FunctionIterator ...
2
votes
5answers
301 views
How to be sure a method is overriding an existing virtual one in C++?
Let's suppose we have a base class which has a virtual method:
class BaseClass
{
virtual void MethodToOverride() const
{
DoSomething();
}
};
And a derived class which overrides ...
1
vote
4answers
893 views
2
votes
3answers
199 views
What good is virtual in a class? [duplicate]
Possible Duplicate:
C++ Virtual/Pure Virtual Explained
For example i have:
class A {
private:
int i;
int j;
public:
void k (int l, int m) { i=l; j=m; } ...
2
votes
1answer
863 views
C++: overriding pure virtual member variable?
This question is best described in code. I have a class called Vertex that contains an instance of a class called Params:
class Params {
virtual Params operator + (Params const& p) = 0;
};
...
1
vote
4answers
282 views
Why is execution-time method resolution faster than compile-time resolution?
At school, we about virtual functions in C++, and how they are resolved (or found, or matched, I don't know what the terminology is -- we're not studying in English) at execution time instead of ...
3
votes
7answers
3k views
Why can't I use virtual/override on class variables as I can on methods?
In the following example I am able to create a virtual method Show() in the inherited class and then override it in the inheriting class.
I want to do the same thing with the protected class variable ...
1
vote
3answers
94 views
What if I suppress “override”?
I remarked the compiler generates a warning if I suppress the override/new (Overloads/Shadows) keyword. Normally, I set the necessary keyword.
But what if i forget it?
// >>>> Case A - ...
0
votes
4answers
271 views
How can I have both abstract and virtual methods in one class?
In the following parent class SqlStatement, how can I make Initialize() abstract but keep Execute() virtual?
using System;
using System.Collections.Generic;
namespace TestSql28374
{
class ...
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?
0
votes
2answers
52 views
based on what logical reasons, virtual and new modifiers have diffrent results in inheritance and polymorphism issues?
I know that when we have a virtual function in our own base class, then by overriding it in a derived class and considering casting when variable declaration, we have different result with comparison ...
7
votes
6answers
3k views
Calling overridden function from the overriding function
Suppose I have virtual function foo() in class B, and I need slightly different behavior in one of B's derived classes, class D. Is it OK to create an overriding function D::foo(), and call B::foo() ...
3
votes
2answers
2k views
abstract method in a virtual class
I have a c# Class that has lots of virtual methods, some of these methods are essentially abstract ( they are fully implemented in subclasses and the base class is empty).
To get it to compile i am ...
1
vote
5answers
2k views
issue of virtual method in C#
In MSDN, it is mentioned,
http://msdn.microsoft.com/en-us/library/9fkccyh4(VS.80).aspx
I am confused what does this item mean "A virtual inherited property can be overridden in a derived class by ...
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;
}
...

