3
votes
4answers
83 views
How dynamic casts work?
Let's say I have type A, and a derived type B. When I perform a dynamic cast from A* to B*, what kind of "runtime checks" the environment performs? How does it know that the cast i …
2
votes
3answers
60 views
Advanced PHP Polymorphism question
Hey guys!
I have a class which has a function to retrieve children elements from a database. The following code will be rather pseudo cause I want to keep it as easy as possible.
…
1
vote
4answers
111 views
Java Polymorphism problem
I've learned all these programming terms in Swedish so please bear with me..
I'm having problems calling a method in a subclass which should override a method in the superclass.
…
1
vote
3answers
86 views
How do I iterate and perform some arbitrary operation on each item?
I have a Abstract Iterator class which has this function
void iterate(){
while(this.hasnext()){
..this.next()..
}
}
How do I pass in any arbitrary function tha …
2
votes
4answers
94 views
How to call overrided methods in a subclass? Potential candidate for refactoring
Originally I had a design problem where I needed five subclasses of a superclass, where all but two would use the same generic method of doing things and the other two classes woul …
4
votes
7answers
149 views
why can’t I be compact with my desired C# polymorphism?
Here's what I want to do:
XmlWriter writer = XmlWriter.Create(
(string.IsNullOrEmpty(outfile) ? Console.Out : outfile)
);
This does not compile, however, giving the error "T …
2
votes
6answers
93 views
Inheritance question
I'm a newbie to C#. I tried C++ and but found it too convoluted.
Here's my question. If I use inheritance, and later realize that a subclass needs a method or field that is not ap …
2
votes
5answers
131 views
Why does an overridden function in the derived class hide other overloads of the base class?
Consider the code :
#include <stdio.h>
class Base {
public:
virtual void gogo(int a){
printf(" Base :: gogo (int) \n");
};
virtual void gogo(int* a){ …
2
votes
5answers
124 views
Multiple Inheritance, Polymorphism and newer ways of programming
Once and for all I want to clearify this somewhat subjective and argumentative area of programming.
Multiple inheritnace
In my current working enviornment I have C++ developers a …
1
vote
3answers
82 views
Storing heterogeneous objects in vector with stack-allocated objects
Storing objects in heterogeneous vector with stack-allocated objects
Hello,
Say I have an abstract class CA, derived into CA1, CA2, and maybe others.
I want to put objects of th …
1
vote
2answers
91 views
Polymorphism (not) broken with visitor pattern in C# (and new instead of override)
I have the following code:
class Visitor
{
internal virtual void Visit(Node n) { }
}
class VisitorSpecial : Visitor
{
internal new void Visit(Node n) { }
}
class Base
…
1
vote
4answers
93 views
Binary tree with different node types
I'm working on a somewhat complex mathematical code, written in C++. I'm using (templated) tree structures for adaptive function representation. Due to some mathematical properties …
15
votes
5answers
296 views
Why does this polymorphic C# code print what it does?
I was recently given the following piece of code as a sort-of puzzle to help understand Polymorphism and Inheritance in OOP - C#.
// No compiling!
public class A
{
public vir …
1
vote
6answers
177 views
C++: Polymorphic class template
Consider a class Calendar that stores a bunch of Date objects.
The calendar is designed to hold a collection of any type of objects that inherit from Date. I thought the best way t …
-1
votes
1answer
96 views
A Polymorphism Problem
it works when :
list<ItemFixed> XYZ::List()
{
list<Item> items = _Browser->GetMusic();
list<ItemFixed> retItems = _Converter->Convert (item …
