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

learn more… | top users | synonyms

4
votes
1answer
62 views

Problems with instanceOf when creating new objects from other objects

I have a class that is responsible for creating Formation objects from Shape objects. Shapes are just what the name says, shapes that are being drawn on canvas (TriangleShape, RectangleShape and so ...
2
votes
1answer
146 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 ...
1
vote
6answers
70 views

Down Casting in Java [duplicate]

Can anyone here please explain to me why I get a java.lang.ClassCastException when downcasting a Parent to a Child? public class Child extends Parent{ public static void main(String[] args){ new ...
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(); ...
6
votes
4answers
108 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 ...
1
vote
3answers
55 views

How to avoid too many downcasts in a function

I have too many downcasts in my code. In c++ I can use templates to avoid downcasting. But what is the best implementation of the following example in c#? class Pet { bool mIsDog; } class Dog : Pet ...
0
votes
1answer
34 views

Practical uses of downcasting

I've finished reading the chapters on polymorphism and inheritance and done all the exercises in my Java books. But I still don't understand why I would need to use downcasting in practice. Could you ...
2
votes
2answers
49 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
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 ...
-1
votes
2answers
157 views

how i can reduce the digits after the decimal point?

I need only up to two decimal points. Dim v1, v2, v3, v4, v5, tv, rp1, rp2, rp3, rp4, rp5 As Double Dim Per1, Per2, Per3, Per4, per5 As Double Per1 = v1 / tv * 100 Per2 = v2 / tv * 100 ...
0
votes
2answers
132 views

Accessing methods from subclass stored as superclass Java (downcasting?)

I'm working on an inventory program in Java. I have each object in the inventory stored as a relavent class type in a DefaultListModel and JList for each location; for example, if I have a video ...
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
2answers
111 views

How do I downcast in python

I have two classes - one which inherits from the other. I want to know how to cast to (or create a new variable of) the sub class. I have searched around a bit and mostly 'downcasting' like this ...
8
votes
4answers
207 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 ...
0
votes
5answers
157 views

using *void as a buffer for static_cast

So I go this: class A; class B : public A; class C : public B; vector<A*> *vecA; vector<C*> *vecC; And I want to cast a vectC into a vecA. vector<A*> *_newA = static_cast< ...
-2
votes
2answers
37 views

Alternatives to downcasting when implementations have unique methods [closed]

I have the following Issue. Where I have to cast inside of the makeLeftTurnMethod... this looks very ugly to me.. Is there a way where I don't have to do this? public interface Car(){ public void ...
5
votes
5answers
170 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 ...
0
votes
2answers
156 views

Java: Casting ParentClass and ChildClass (Downcast Runtime Error)

public class InheritanceDemo { public static void main(String[] args) { ParentClass p = new ParentClass(); ChildClass c = new ChildClass(); //Casting ChildClass to ...
1
vote
2answers
116 views

Casting 'this' into subclass in superclass constructor

There are two classes: A and B. B is the subclass of A. A stores a reference of B, which may in certain scenarios a reference to this as well. public B b; In the constructor of A, is it legal to ...
1
vote
6answers
191 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
2answers
263 views

how expensive is this php downcasting workaround

This question is related to http://stackoverflow.com/questions/1721949/downcasting-in-php5 How expensive is this php downcasting workaround? Is this php downcasting workaround too expensive? I've ...
0
votes
1answer
261 views

downcasting in php5

I've realized that there's no downcasting in php5. Is there a common pattern to achieve it?
7
votes
5answers
143 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>, ...
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 ...
1
vote
1answer
86 views

Avoiding Downcasting [closed]

I have a problem where I have an array of objects which can be of class B or C. At some point, from prior information on how the array of objects was populated, I know an index that corresponds to an ...
1
vote
4answers
405 views

java: “downcasting” to new object / opposite of slicing

Sorry, i really dont know how to make a headline for that question; maybe there is a name for what im trying to do that i dont know, but i can explain it with some code: Guess you have a class that ...
0
votes
2answers
67 views

how to get the implementation of a superclass from a subclass using upcasting or by other methods?

i just wanted to know how to get the implementation of a superclass using a subclass, for example. class Animal { void poo() { System.out.println("general poo"); } } class Horse ...
2
votes
1answer
334 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 ...
0
votes
2answers
67 views

Create Class-Object from Generic

In a generic method, I don't seem to be able to access the generic type of the method at runtime (error: cannot select from a type variable). public <A> A get(Animal a) { Class ac = ...
1
vote
1answer
76 views

Implicit downcast from 'System.IO.Stream' to 'System.IO.MemoryStream'

function SerializeObject(pObject : Object) { var XmlizedString : String = null; var memoryStream : MemoryStream = new MemoryStream(); var xs : XmlSerializer = new ...
4
votes
3answers
137 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 ...
0
votes
2answers
331 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 ...
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 ...
1
vote
7answers
213 views

Force downcasting

I know downcasting is not doable. But I am trying to work around it. This is what I have. public class Ticket{ public int number; public String description; } public class MyTicket extends ...
1
vote
1answer
115 views

Downcast using C-style cast when knowing the concrete sub class type

In my project I have a tree of QObjects with different types. Let me give you a simple example which should give you the idea of what I'm talking about. This could be an exemplary QObject tree (not an ...
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 ...
0
votes
1answer
143 views

MongoDB BsonDocument Down-Casting

I have a collection in MongoDB which I'm trying to "FindAndModify" using C# driver. This collection holds types of a base class and its derived classed, as follows: [BsonDiscriminator(RootClass = ...
1
vote
2answers
104 views

Downcast from superclass: Node to SpecialNode in a linked list

public class Node { public Node right; } public class SpecialNode extends Node { public String specialLabel; } public class Testmain { public static void main(String[] args) { Node n1 = new ...
1
vote
4answers
154 views

Is there an easier/better way to do this, since downcasting isn't allowed in C#?" [closed]

Potentially an argumentative topic, but... I really hate that I can't do the following: class User { public string ImageURL {get;set;} } class UserUI : User { public Brush ImageBrush ...
0
votes
6answers
162 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 ...
0
votes
3answers
59 views

Downcasting Exception

I made this code: protected Lala lala; private Oyeha oyeha; public void setLala(Lala lala) { this.lala = lala; } this.oyeha = (Oyeha) this.lala; executeHostBean = ...
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 ...
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
1answer
76 views

Python (django) generic module development - Storing a dynamic queryset in the database? Model inheritance

I have an interesting design decision to be made in the context of a Python Django model that I'm planning to eventually release. The classes model an ApprovalRequest, which represents a question / ...
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 ...
0
votes
1answer
87 views

Java: Reflection against casting when you know superclass

I don't know exactly how to define my doubt so please be patient if the question has already been asked. Let's say I have to dynamically instantiate an object. This object will surely be instance of ...
-10
votes
2answers
199 views

downcasting in C# with interfaces [closed]

I need an example of downcast to understand the downcasting concept in this case when I have interface: public interface Ifoo { } public class foo :Ifoo { } Thank you,
3
votes
2answers
529 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 ...
0
votes
5answers
111 views

How do I cast a List from a subclass generic to a parent class generic?

I'm modifying open JDK to add features and I've run into this twice with no good solution. There's a class named JCStatement which extends JCTree. Issue: I want to cast a List<JCStatement> ...
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 ...

1 2 3