2
votes
3answers
62 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
47 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 ...
1
vote
1answer
52 views

Validity of casting a Base pointer to a Derived pointer when Derived only adds methods

First, the question is very similar to downcasting shared pointer to derived class with additional functionality is, where there are good answers. But I'd like to have explanation on why this is ...
1
vote
6answers
188 views

Downcasting/Upcasting error at compile time & runtime?

Please check the below program. I have doubt when compiler will issue casting exception at compiler level and when it will be at runtime? Like in below program, expression I assumed (Redwood) ...
0
votes
6answers
157 views

C++ inheritance downcasting

I have my base class as follows: class point //concrete class { ... //implementation } class subpoint : public point //concrete class { ... //implementation } How do I cast from a ...
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 ...
0
votes
2answers
71 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
5answers
165 views

Downcasting gives ClassCastException. How can I fix this?

I'm trying to implement a private message system. Let me know if this is bad design but I have two classes User and Recipient. Recipient is a User so it inherits User. Recipient has additional ...
5
votes
4answers
318 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() {}; }; ...
6
votes
2answers
298 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 ...
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> ...
1
vote
4answers
891 views

Objective-C inheritance; downcasting/copying from parent class to derived class

In my program I have a class, say ClassA. I'd like to create a derived class, say ClassB. My program has functions returning instances of ClassA and in certain cases I'd like to use these returns to ...
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 ...
1
vote
4answers
366 views

Downcast from Generic without losing expressiveness

I've something along this lines: public class Something { private IDictionary<object,Activity> fCases; public IDictionary<object,Activity> Cases { get { return ...
1
vote
4answers
533 views

can you downcast objects in java without declaring a new variable?

so I was trying to do something like class O has a child E I declare the variable O xyz = new E(); but then if I call xyz.method(), I can only call those in class O's methods, not E's....so I ...
1
vote
4answers
207 views

Should downcasting be avoided while using a class hierarchy in C++?

Let's say I'm writing an application which works with projects, and exposes different functionality depending on the type of the project. I have a hierarchy of classes for the different types of ...
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 ...
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 ...