Downcasting permits an object of a superclass type to be treated as an object of any subclass type.

learn more… | top users | synonyms

8
votes
5answers
2k views

Cast the current object ($this) to a descendent class

I have a class where it may be necessary to change the object to a descendent class further down the line. Is this possible? I know that one option is to return a copy of it but using the child class ...
2
votes
1answer
1k views

Downcasting with Entity Framework

I have a project where I've defined in EF an Employer as a derived class of User. In my process I create a user without knowing whether it will eventually be an employer (or other kinds of users) and ...
109
votes
3answers
42k views

In Objective-C, what is the equivalent of Java's “instanceof” keyword?

I would like to check whether an object (e.g. someObject) is assignable (cast-able) to a variable of another type (e.g. SpecifiedType). In Java, I can write: someObject instanceof SpecifiedType A ...
3
votes
4answers
134 views

How can I downcast to class' type E or at least make it in a safe way without warnings?

I have super abstract class Node and 50 types of subclasses SubNode. I have a generic Class <E extends Node> which has a private var List<E> and a method which unfortunately has to ...
1
vote
3answers
820 views

How to properly downcast in C# with a SWIG generated interface?

I've got a very large and mature C++ code base that I'm trying to use SWIG on to generate a C# interface for. I cannot change the actual C++ code itself but we can use whatever SWIG offers in the way ...
4
votes
4answers
2k views

C++ dynamic_cast - polymorphic requirement and downcasting

In the following code, while construction of obj in case 1 we would any how construct derived class too but it's member functions are just inaccessible to obj. So while down- casting ( i.e., in case 2 ...
0
votes
3answers
473 views

Design pattern to avoid downcasting in message passing

Base class MessageHandler has derived classes. They would like to pass messages to each other. Messages could be of different classes, but can be made to share a base class. How can each ...
7
votes
3answers
983 views

Downcasting shared pointer to derived class with additional functionality - is this safe?

Consider the following outline: class Base { /* ... */ }; class Derived : public Base { public: void AdditionalFunctionality(int i){ /* ... */ } }; typedef std::shared_ptr<Base> pBase; ...
5
votes
5answers
180 views

Is the performance/memory benefit of short nullified by downcasting?

I'm writing a large scale application where I'm trying to conserve as much memory as possible as well as boost performance. As such, when I have a field that I know is only going to have values from ...
2
votes
6answers
169 views

Cant copy construction be done without creating an explicit function in the pure virtual base class?

My objective is to do a deep copy of a class, but a virtual class is causing trouble. #include<iostream> using namespace std; class Vir//pure virtual class { public: virtual void ...
0
votes
3answers
1k views

Detect Object type then cast it accordingly?

My method takes as input an Object. How do i determine it's type, then cast it accordingly? So for example: binarySearch( Object o ); Inside the binarySearch method, i need a way to determine the ...
12
votes
2answers
572 views

Dynamic downcast on private inheritance within private scope

A tweak on this question that I've run into. Consider: class A {}; class B : private A { static void foo(); }; void B::foo(){ B* bPtr1 = new B; A* aPtr1 = dynamic_cast<A*>(bPtr1); // ...
8
votes
4answers
210 views

Is it possible to downcast an object to a subclass which does not define extra variable or vtable in C++?

Is it possible to downcast an object to a subclass does not define any extra variable or virtual method? If I have these classes, class A { public: A (); }; class B : public A { public: void method1 ...
1
vote
1answer
534 views

problem with a HashSet's Iterator

I'm trying to see if HashSet would be the solution for my next project so i'm doing some very easy test to check functionalities. I have a simple class Klant: public class Klant { private int ...
0
votes
2answers
344 views

Call a method that requires a derived class instance typed as base class in vb.net or c#

Ok, I will do my best to explain. I have 2 objects - "Spaceship" and "Planet" derived from a base "Obj". I have defined several classes - Circle, Triangle, Rectangle etc. which all inherit from a ...
0
votes
2answers
72 views

Cleanest way to fix this castings behavior

Imagine I have a list with 50 different type of a certain subclasses of Node which I expect to be the same type or get a ClassException if not. I have a method which receives this list and a node ...
0
votes
3answers
256 views

C++ - faster downcasting children of a tree-node?

I have a simple hierarchy tree structure with a base class Node representing a node. A node could be of another specific type (subclassing). class Node { vector<Node*> childs; // simple ...
0
votes
1answer
267 views

downcasting in php5

I've realized that there's no downcasting in php5. Is there a common pattern to achieve it?