Downcasting permits an object of a superclass type to be treated as an object of any subclass type.
2
votes
1answer
951 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 ...
0
votes
2answers
262 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
259 views
downcasting in php5
I've realized that there's no downcasting in php5. Is there a common pattern to achieve it?
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 ...
2
votes
2answers
586 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.
...
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 ...
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 ...
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 ...
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 ...