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

learn more… | top users | synonyms

107
votes
3answers
41k 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 ...
12
votes
2answers
538 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
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 ...
8
votes
4answers
206 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 ...
7
votes
5answers
141 views

Cost of Up-casting to ArrayList of objects and then down-casting to custom ArrayList

I have a situation in which I am getting data from database, and I want to upcast it to ArrayList of objects and then downcast it to different custom ArrayList i.e. List<User>, ...
7
votes
3answers
915 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; ...
6
votes
11answers
6k views

Downcasting in C#

I'm facing a problem that I don't know how to solve and am hoping the community can help. I'm writing an app that manages "Lead" objects. (These are sales leads.) One part of my program will import ...
6
votes
3answers
2k views

Downcasting a list of objects in C#

How can I downcast a list of objects so that each of the objects in the list is downcast to an object of a derived class? This is the scenario. I have a base class with a List of base items, and two ...
6
votes
5answers
1k views

Why can't static_cast be used to down-cast when virtual inheritance is involved?

Consider the following code: struct Base {}; struct Derived : public virtual Base {}; void f() { Base* b = new Derived; Derived* d = static_cast<Derived*>(b); } This is prohibited by ...
6
votes
2answers
300 views

SW-Design: Adapters for Class Hierarchy in Delphi (Generics vs. Downcast)

I would like to have some suggestions for the following problem: Let's say you want to write adapters for the VCL controls. All Adapters should have the same base class, but differ in wrapping special ...
6
votes
4answers
107 views

Extending a class such that any parent class can be cast to it, in Java

I have a feeling this is impossible, but if not it would be very useful. I’m trying to extend a parent class in a way that the child class only has new methods, no new constructors, no new fields. So ...
5
votes
4answers
319 views

Downcasting from base pointer to templated derived types

I have the following hierarchy: class base { public: virtual ~base(){} virtual void foo() {} }; template <typename T> class derived1 : public base { virtual void foo() {}; }; ...
5
votes
5answers
168 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 ...
5
votes
4answers
8k views

How to downcast a Java object?

I am trying to understand Java's polymorphism, and I have one question about downcasting an object. Let's say for this example I have two subclasses Dog and Cat that inherit from a superclass Animal ...
5
votes
1answer
446 views

Why can't I downcast pointer to members in template arguments?

If I make a pointer-to-base-member, I can convert it to a pointer-to-derived-member usually, but not when used within a template like Buzz below, where the first template argument influences the ...
4
votes
5answers
576 views

How to avoid downcasting when trying to extend a Java object

I get several objects of type Foo from a call to an external API. Locally I want to process those objects with a little added information so I have a subclass FooSon that adds those extra fields. How ...
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 ...
4
votes
2answers
618 views

Downcasting a generic type in C# 3.5

Why can I only upcast a generic and not downcast it? How is it not clear to the compiler that if my constraint says where T : BaseClass and U is derived from BaseClass that (U)objectOfTypeT is valid?
4
votes
3answers
136 views

How to force downcast on generics

Given the code below: class Animal { } class Dog : Animal { } class Cage<T> { private T animal; public Cage(T animal) { this.animal = animal; } public T Animal ...
4
votes
3answers
182 views

Separation of algorithms and data in a geometry library (triple-dispatching needed?)

I am having trouble designing the part of my application that deals with geometry. In particular, I would like to have a hierarchy of classes and separate methods for intersections. The problem The ...
3
votes
4answers
1k views

How can I do a safe downcast and prevent a ClassCastException

I have the following scenario: public class A { } public class B extends A { } public class C extends B { public void Foo(); } I have a method that can return class A, B or C and I want to ...
3
votes
5answers
312 views

Is this not downcasting?

If I do double d = 34.56; int i = (int)d; Am I not "downcasting"? OR Is this term only used in terms of classes and objects? I am confused because in this case we are "downcasting" from a ...
3
votes
2answers
2k views

Why can we cast a Java interface to *any* non-final class?

import java.util.Collection; public class Test { public static void main(String[] args) { Collection c = null; Test s = null; s = (Test) c; } } In the code ...
3
votes
5answers
124 views

Inheretence and casting for List Ojbects

I'm having trouble casting a List of Fruit, down to the Fruit subclass contained in the List. public class Response { private List<Fruit> mFruitList; public List<Fruit> ...
3
votes
1answer
996 views

Why is a static_cast from a Pointer to Base to a Pointer to Derived “invalid?”

So I have this code: Node* SceneGraph::getFirstNodeWithGroupID(const int groupID) { return static_cast<Node*>(mTree->getNode(groupID)); } mTree->getNode(groupID) returns a PCSNode*. ...
3
votes
3answers
86 views

Can an upcasted object be downcasted again without trying a cast for every derived class type of the base class type?

I have case where am given a collection of objects that all derive from the same base class. If I iterate over the collection and check each item's type, I can see that the object is of a derived ...
3
votes
4answers
130 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 ...
3
votes
2answers
524 views

How to avoid downcast?

I have an implementation of a State Pattern where each state handles events it gets from a event queue. Base State class therefore has a pure virtual method void handleEvent(const Event*). Events ...
3
votes
3answers
641 views

Should I avoid downcasting by any means when using factory pattern?

I'm working on a server project that implements a proprietary protocol. The server is implement with factory pattern in C++, and we're now facing the problem of downcasting. The protocol I'm working ...
2
votes
6answers
1k views

How to change this design to avoid a downcast?

Let's say I have a collection of objects that all inherit from a base class. Something like... abstract public class Animal { } public class Dog :Animal { } class ...
2
votes
4answers
92 views

Upcasting in C#

Can we consider value type conversions like int to float conversion as upcasting and float to int as downcasting? I believe when we talk about upcasting and downcasting, we specifically mean reference ...
2
votes
2answers
76 views

where does downcasted object point to?

public class Animal{ int n = 5; public static void main(String[] args) { Animal a = new Animal(); Animal ah = new Horse(); Horse h = new Horse(); ...
2
votes
3answers
63 views

Downcasting a class c++

I have a doubt about downcasting an object in C++. Here it comes an example: class A { } class B : public A { public: void SetVal(int i) { _v = i; } private: int _v; } A* a = new A(); ...
2
votes
2answers
434 views

Are there any C++ tools that detect misuse of static_cast, dynamic_cast, and reinterpret_cast?

The answers to the following question describe the recommended usage of static_cast, dynamic_cast, and reinterpret_cast in C++: ...
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 ...
2
votes
6answers
896 views

Forced Downcasting in Java

I want to force a downcast on a object what can't be down casted and was wondering what the right approach would be. The use case is that I have a list of rules that are checked and what will generate ...
2
votes
4answers
1k views

Is it possible to avoid a downcast?

I have some logic, which defines and uses some user-defined types, like these: class Word { System.Drawing.Font font; //a System type string text; } class Canvass { System.Drawing.Graphics ...
2
votes
3answers
621 views

How can I correctly downcast the pointer from void* to TMemo* in C++Builder2009?

I am writing multi-thread socket chat in C++Builder 2009. It is almost complete in accordance with what I need to do but I have a little problem. I need to pass the TMemo* pointer into CreateThread ...
2
votes
1answer
145 views

Is it possible to downcast shared_ptr without copy?

#include <memory> struct a {}; struct b : public a {}; std::shared_ptr<b> get() { std::shared_ptr<a> temp(new b); return std::static_pointer_cast<b>(temp); // atomic ...
2
votes
1answer
331 views

Best practice with dynamic_cast and polymorphism

I have a design problem that I am not sure how to handle in the best way. I want my code to be future proof and still not be to messy and complex (the plight of a geek). Currently my design has the ...
2
votes
3answers
749 views

static_cast on derived classes when base turns from not polymorphic to polymorphic

I am reviewing C++ casts operator and I have the following doubt: for polymorphic classes I I should use polymorphic_cast I should never use of static_cast since down-casting might carry to ...
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 ...
2
votes
2answers
48 views

Issues with dynamic_cast from parent to child

I'm working on a basic client server application in C++ using sockets that will run a game of battleship. All communication between client and server is in the form of a simple object hierarchy that ...
2
votes
1answer
144 views

Accessing a submethod of an argument of an overriden method in android?

This must be a noob question, but I can't find the proper wait to achieve the following: In android, I made a subclass MyView extending a View class. In B, I've defined a method mMethod not present ...
2
votes
3answers
280 views

How can I avoid downcasting when passing information through a queue?

I'm writing a tool which enables a user to interact with a bit of hardware by changing settings and then streaming information. To do this I have a couple of threads running: EquipmentInterface and ...
2
votes
3answers
80 views

Which languages allow to change identity of an object (not cast)? [closed]

In this post, a brave wants (in C++) to downcast a object of type Base to a Derived type. Assuming that the Derived type has no more attributes than Base, it can make sense if you're jealous of the ...
2
votes
4answers
176 views

Shallow copying a list with downcasting

I have the class herichary as follows CEntity---->CNode--->CElement I have a class Nodes : List<Cnode> and Class Elements : List<Element> Node class contain common item common ...
2
votes
1answer
953 views

How to do dynamic downcasting in vb.net?

I have several classes, that all derives from SuperClass. When the classes are created, they all are put into a List(Of SuperClass). When I go through the list, i would like to downcast the ...
2
votes
2answers
588 views

Base object in constructor as alternative to downcast

I have a list of base objects (RTUDevice) and want to iterate through and convert each to a derived object (actually a derived of a derived RTDSensor) , however the downcasting is throwing an error. ...
2
votes
1answer
278 views

What's faster: down-cast from virtual base or cross-cast?

This is somewhat hypothetical as I'm not too worried about performance - just wondering which option is actually the fastest/most efficient in general, or if there is no difference whatsoever. ...

1 2 3