Tagged Questions
4
votes
1answer
56 views
Polymorphism & default values: can co-exist?
I have a base class with a number of inherited derived classes. Something like this:
class A {
public:
virtual void f(string foo = "bar") {
cout << foo << endl;
}
};
...
2
votes
2answers
59 views
Turning a non-pure virtual function into pure in a subclass
So, I have this polymorphic hierarchy:
ClassA
Is not abstract, no pure virtual functions, but a few virtual functions
ClassB:public ClassA
Defines an extended interface for a certain type of ...
0
votes
3answers
33 views
object inheritance virtual function run fail error
Shape *shape[100];//global scope
Square sqr;//global scope
void inputdata() {
int len,width;
cout << "enter length";
cin >> len;
cout << "enter width";
cin >> width;
Square ...
1
vote
2answers
61 views
How to store constant 2D array in C++ class with virtual access?
I have to put few megabytes of data in two-dimensional arrays in C++ code (embed it in DLL), diffrent datasets for each subclass. I defined virtual accessor methods to access constants to specified ...
3
votes
4answers
69 views
Override property or calculate property in constructor
For example I have base class and I need a property that
will be calculated in derived classes.I have two variant (SomeProperty1 and SomeProperty2):
public class BaseClass
{
public int ...
1
vote
3answers
120 views
Polymorphism without virtual in C++ for multi level inheritance
I have a situation where I need to achieve polymorphism with out vtable. Here is what I am trying to do
- There is a class hierarchy: C extends B, B extends A
- The idea is to declare a function ...
3
votes
1answer
73 views
Inheritance and inline?
I have been doing a lot of reading recently and whilst covering inheritance (and virtual functions) I keep stumbling across the "inline" keyword. Now I know what inline is in the normal sense- ...
2
votes
4answers
170 views
Why doesn't polymorphism work without pointers/references?
I did find some questions already on SO with similar title- but when I read the answers they were focussing on different parts of the question which were really specific (e.g. STL/containers).
Could ...
2
votes
1answer
119 views
C++ polymorphism: Why is static binding impossible even when the type is obvious
I am learning about virtual functions and virtual tables in C++. But, I could not understand why there is a need for dynamic binding. Doesn't the compiler have all the information to figure out if the ...
1
vote
2answers
73 views
Destructor ordering in inheritance hierarchy
If I have the following hierarchy:
Class F contains member objects of type (Class E and Class D, declared in that order)
Class F inherits the concrete class Class C
Class C inherits the ...
2
votes
2answers
63 views
Assigning a template value to a class template via a pointer to its non-template parent class
I'm trying to make a C++ Template class that can store a template value. However, I need to create pointers to this class before the type of the template value is known. To do this, I created an ...
0
votes
1answer
80 views
Does a member of a C++ base class really needs to be virtual to be overridden by a derived class?
class A {
public:
virtual int test()=0;
};
class B : public A {
public:
int test(){return 10;}
};
B *b = new B();
b->test(); // would return 10;
whereas:
class A {
...
0
votes
2answers
27 views
Residing a member of parent class type inside another class
#include <iostream>
class BarParent
{
virtual void fuz()
{
std::cout << "BarParent" << std::endl;
}
};
class BarChild : public BarParent
{
virtual void ...
1
vote
2answers
82 views
Itersection beetween different shapes
I am trying to make a library of shapes. There is the following class Shape, with this declaration:
#include "pos.h"
#ifndef SHAPE_H
#define SHAPE_H
class Shape{
protected:
Pos pos;
public:
...
0
votes
1answer
157 views
Passing pointer to derived class, to function that expects pointer to base class?
OK. I'm not very good at polymorphism in C++, but I've a problem now. Imagine these classes:
class Parent {
public:
Parent();
virtual ~Parent();
};
class Child : public Parent
{
public:
...
1
vote
5answers
348 views
C# virtual methods override the return type & method arguments
I want to init virtual method with exact name in abstract class.
And in class, which is the inheritor override method such, that I can override:
the return type of the base method
arguments of the ...
12
votes
4answers
176 views
Why is the “virtuality” of methods implicitly propagated in C++?
What is the reason for removing the ability to stop the propagation of methods virtuality?
Let me be clearer: In C++, whether you write "virtual void foo()" or "void foo()" in the derived class, it ...
1
vote
2answers
95 views
Abstract classes and Pointers
I have a class
// i want an abstract class.
class Foo
{
public:
virtual void bar()=0;
};
// i want this abstract calss to be used all over the program :) to enjoy polymorphism.
class ...
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 ...
3
votes
5answers
170 views
How to make an array with polymorphism in C++?
class Base1
{
private:
int testInput;
public:
Base1();
virtual int GetRow(void) = 0;
};
Base1::Base1()
{
testInput = 0;
}
class table : public Base1
{
private:
...
1
vote
2answers
83 views
How to reliably call immediate parent's virtual function
Consider this code
class Base
{
public:
virtual void print ()
{
std::cout << "Base::print" << std::endl;
}
};
class BaseA : public Base
{
public:
virtual void ...
2
votes
3answers
142 views
Multiple inheritance conflict
I have the following code:
class Interface
{
virtual void method()=0;
};
class Base : public Interface
{
virtual void method()
{
//implementation here
}
};
class Parent: 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
109 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 ...
3
votes
2answers
214 views
Why is base-class destructor called on derived object when destructor of derived class is non-virtual?
Why are all destructors, ~D(),~C(),~B(),~A() being called in the example below?
There is only one virtual destructor: that of A.
Here is the code:
#include<iostream>
using namespace std;
...
4
votes
3answers
112 views
c++ virtual classes: interesting point
Please tell me why the output is as below for the following program. I am not getting the virtual classes in c++. observe the below code:
class B
{
public:
B(char c = 'a') : m_c(c) {}
public:
...
4
votes
2answers
81 views
Identifying derived class from base class
Is there any way to check if two instances are the same derived class? Something like:
Base *inst1 = new A();
Base *inst2 = new B();
Base *inst3 = new A();
bool b1 = (inst1->class== ...
0
votes
2answers
894 views
How to fix compiler error “class has no member named X”?
I'm currently coding an expression evaluator and have run into an issue regarding polymorphism.
My class hierarchy is as follows: Divide inherits from Operator which inherits from the base class ...
2
votes
3answers
231 views
Can I access a derived class's non-virtual functions from a base class pointer? [closed]
I have this code :
A * a = new A;
a->fun();
delete a;
a = new B;
a->fun();
delete a;
What I need to do is to make it print :
A::fun() //being printed by A's fun()
B::fun() //being printed ...
2
votes
1answer
82 views
Polymorphism with class member objects
I'm wondering how polymorphism in C++ works when an object you're acting on is stored inside a class (not as a pointer or reference type).
I've read that polymorphism will only work on pointers and ...
3
votes
4answers
324 views
C++ non-polymorphic interface
Simply put, how do you create an interface in C++ for a single level of inheritance (for simplicity and didactic reasons)? I saw some code that wasn't using polymorphism, but where the base class ...
12
votes
3answers
155 views
Can a standard-compliant compiler reject code containing dynamic_cast downcast from non-polymorphic type?
This question is inspired by comments here.
Consider the following code snippet:
struct X {}; // no virtual members
struct Y : X {}; // may or may not have virtual members, doesn't matter
Y* ...
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
169 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, ...
4
votes
7answers
535 views
What things (or in what cases) can make C++ slower than C ?
This is an interview question, the interview has been done.
What things can make C++ slower than C ?
The interviewer asked it very deep and always asked "anything else ? " whenever I said ...
2
votes
6answers
287 views
C++ : inheritance without virtuality
I wonder if what I'm currently doing is a shame for C++, or if it is OK.
I work on a code for computational purpose. For some classes, I use a normal inheritance scheme with virtuality/polymorphism. ...
0
votes
2answers
76 views
how does the jvm handle polymorphism and its optimization
I have the stituation that there is an Interface I with a method m, and two implementation classes A and B that behave differently.
the objects of A and B use only memory for their value and ...
1
vote
4answers
181 views
Size of the classes in case of virtual inheritance
Can someone please explain about the size of the classes in the case of virtual inheritance involving virtual functions.
class A{
char k[ 3 ];
public:
virtual void ...
-4
votes
5answers
273 views
How can I create an abstract base class in C++?
How would I go about doing the following in C++ (the following code is C#):
class Base
{
public virtual void Foo()
{
// do stuff...
}
}
class C : Base
{
public override void ...
0
votes
2answers
687 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 ...
2
votes
2answers
93 views
Virtual function call from a normal function
class base
{
public:
void virtual func(){cout<<"base";}
void check()
{
func();
}
};
class derived: public base
{
public:
void func(){cout<<"dervied";}
};
int ...
1
vote
1answer
82 views
i am trying to overload an operator<<
basically what my problem is:
i have a base class and a derived class.
i need to call the operator<< on the derived class but it keeps calling the base class because in the main it was created ...
2
votes
3answers
902 views
How does overloading a Virtual method differ from a Non-Virtual method?
What is the difference between these two:
Declaring the base class function virtual and changing the derived class
function.
Overloading an inherited non-virtual function.
When would you use one ...
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 ...
4
votes
2answers
455 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 ...
2
votes
2answers
69 views
Changing types passed in to virtual methods
I have a question regarding changing parameter types in virtual methods. First I'll explain the scenario.
This is the base interface for users that can execute commands
public interface ...
1
vote
3answers
3k views
What does 'has virtual method … but non-virtual destructor' warning mean during C++ compilation?
#include <iostream>
using namespace std;
class CPolygon {
protected:
int width, height;
public:
virtual int area ()
{ return (0); }
};
class CRectangle: public CPolygon {
...
2
votes
1answer
259 views
c# virtual methods in class that implements interface
Lets say I have the following class:
namespace myNamespace
{
[TypeLibType((short)2)]
[ClassInterface((short)0)]
[ComImport]
public class myClass : myInterface
{
public ...
7
votes
6answers
415 views
When to mark a function in C++ as a virtual?
Because of C++ nature of static-binding for methods, this affects the polymorphic calls.
From Wikipedia:
Although the overhead involved in this dispatch mechanism is low, it
may still be ...
0
votes
5answers
320 views
What is the point of Virtual and Override? Doesn't C# Do the same thing without them?
From my understanding, the virtual keyword allows you to use the base class' method, and override allows you to override it in a class that inherits from the base class. My confusion is that I just ...


