Downcasting permits an object of a superclass type to be treated as an object of any subclass type.
2
votes
3answers
73 views
Why Downcasting throws Exception?
In java:
Base b = new Base();
Derived d = (Derived)b;
throws ClassCastException. Why? Why downcasting throws Exception here? I could not figure out the reason.
-1
votes
1answer
15 views
Downcasting and deleting the pointer. C++
I never see any destructors called doing the following.
class Base
{
public:
Base()
{
std::cout<<"Constructing Base" << std::endl;
}
// this ...
1
vote
6answers
69 views
java use object as double without explicit cast
Say I have this:
Object obj = new Double(3.14);
Is there a way to use obj like a Double without explicitly casting it to Double? For instance, if I wanted to use the .doubleValue() method of Double ...
0
votes
0answers
15 views
JMockIt downcasting/instanceof
How can we test downcasting with JMockIt? For example, I have some object of some base class, and then code that checks if it's an instanceof various extension classes and branches appropriately. ...
4
votes
1answer
65 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
151 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
76 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
66 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
114 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
39 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
56 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
104 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
279 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
140 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
54 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
133 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
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 ...
-2
votes
2answers
41 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 ...
0
votes
2answers
174 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
125 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
215 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) ...
7
votes
5answers
148 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>, ...
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 ...
1
vote
1answer
88 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 ...
0
votes
2answers
69 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 ...
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
77 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
143 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
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 ...
3
votes
3answers
87 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
222 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
120 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
185 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
152 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
109 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
161 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
197 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
5answers
158 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< ...
0
votes
3answers
60 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 = ...
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 ...
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
1answer
80 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 / ...
0
votes
1answer
90 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
213 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,
0
votes
5answers
118 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> ...
3
votes
2answers
562 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 ...
2
votes
1answer
370 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
5answers
179 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 ...
2
votes
3answers
290 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 ...


