Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
239 views

How does one downcast a std::shared_ptr?

Consider: struct SomethingThatsABase { virtual bool IsChildOne() const { return false; } virtual bool IsChildTwo() const { return false; } }; struct ChildOne : public SomethingThatsABase { ...
3
votes
3answers
287 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 ...
3
votes
3answers
1k 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
72 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
6answers
870 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
884 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 ...
1
vote
3answers
52 views

Java downcasting

Hi have one class like this import java.util.ArrayList; public class MobilePhone { private String number; private ArrayList<Message> messages; public MobilePhone(String n) { ...
1
vote
2answers
56 views

Actionscript 3.0 type downcast issue

I have implemented a new class that extends MovieClip. It's name is base.MovieClipWithDelays ("base" here is a package name). My scene contains such an object named Blah. In Symbol Properties I ...
1
vote
3answers
163 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 ...
1
vote
6answers
209 views

C++ inheritance question

I have the following problem in application architecture and am willing to solve it (sorry for a lot of text). I am building a game engine prototype and I have base abstract class AbstractRenderer (I ...
0
votes
3answers
105 views

Pointer Upcast and Downcast

Pointer Downcast int* ptrInt; char * ptrChar; void* ptrVoid; unsigned char indx; int sample = 0x12345678; ptrInt = &sample; ptrVoid = (void *)(ptrInt); ptrChar = ...
0
votes
1answer
111 views

Android Java class casting question

I am wondering if someone could explain something about a class cast for me. I am playing around with Android and I have a subclass of Application named ExApp. I want to call a method of ExApp from ...