Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
143 views

Dynamic downcast on private inheritance within private scope

A tweak on this question that I've run into. Consider: class A {}; class B : private A { static void foo(); }; void B::foo(){ B* bPtr1 = new B; A* aPtr1 = dynamic_cast<A*>(bPtr1); // ...
6
votes
2answers
238 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 ...
6
votes
3answers
274 views

Downcasting shared pointer to derived class with additional functionality - is this safe?

Consider the following outline: class Base { /* ... */ }; class Derived : public Base { public: void AdditionalFunctionality(int i){ /* ... */ } }; typedef std::shared_ptr<Base> pBase; ...
6
votes
3answers
577 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 ...
6
votes
5answers
518 views

Cast the current object ($this) to a descendent class

I have a class where it may be necessary to change the object to a descendent class further down the line. Is this possible? I know that one option is to return a copy of it but using the child class ...
5
votes
1answer
262 views

Why can't I downcast pointer to members in template arguments?

If I make a pointer-to-base-member, I can convert it to a pointer-to-derived-member usually, but not when used within a template like Buzz below, where the first template argument influences the ...
5
votes
11answers
4k 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 ...
4
votes
5answers
162 views

Why can't static_cast be used to down-cast when virtual inheritance is involved?

Consider the following code: struct Base {}; struct Derived : public virtual Base {}; void f() { Base* b = new Derived; Derived* d = static_cast<Derived*>(b); } This is prohibited by ...
4
votes
4answers
3k 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 ...
4
votes
2answers
463 views

Downcasting a generic type in C# 3.5

Why can I only upcast a generic and not downcast it? How is it not clear to the compiler that if my constraint says where T : BaseClass and U is derived from BaseClass that (U)objectOfTypeT is valid?
3
votes
5answers
72 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> ...
3
votes
5answers
229 views

How to avoid downcasting when trying to extend a Java object

I get several objects of type Foo from a call to an external API. Locally I want to process those objects with a little added information so I have a subclass FooSon that adds those extra fields. How ...
3
votes
4answers
442 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 me class A, B or C and I want to ...
3
votes
5answers
226 views

Is this not downcasting?

If I do double d = 34.56; int i = (int)d; Am I not "downcasting"? OR Is this term only used in terms of classes and objects? I am confused because in this case we are "downcasting" from a ...
2
votes
1answer
168 views

What's faster: down-cast from virtual base or cross-cast?

This is somewhat hypothetical as I'm not too worried about performance - just wondering which option is actually the fastest/most efficient in general, or if there is no difference whatsoever. ...
2
votes
3answers
68 views

Which languages allow to change identity of an object (not cast)?

In this post, a brave wants (in C++) to downcast a object of type Base to a Derived type. Assuming that the Derived type has no more attributes than Base, it can make sense if you're jealous of the ...
2
votes
1answer
210 views

Why is a static_cast from a Pointer to Base to a Pointer to Derived “invalid?”

So I have this code: Node* SceneGraph::getFirstNodeWithGroupID(const int groupID) { return static_cast<Node*>(mTree->getNode(groupID)); } mTree->getNode(groupID) returns a PCSNode*. ...
2
votes
4answers
550 views

C++ dynamic_cast - polymorphic requirement and downcasting

In the following code, while construction of obj in case 1 we would any how construct derived class too but it's member functions are just inaccessible to obj. So while down- casting ( i.e., in case 2 ...
2
votes
6answers
385 views

Forced Downcasting in Java

I want to force a downcast on a object what can't be down casted and was wondering what the right approach would be. The use case is that I have a list of rules that are checked and what will generate ...
2
votes
1answer
107 views

Accessing a submethod of an argument of an overriden method in android?

This must be a noob question, but I can't find the proper wait to achieve the following: In android, I made a subclass MyView extending a View class. In B, I've defined a method mMethod not present ...
2
votes
3answers
257 views

static_cast on derived classes when base turns from not polymorphic to polymorphic

I am reviewing C++ casts operator and I have the following doubt: for polymorphic classes I I should use polymorphic_cast I should never use of static_cast since down-casting might carry to ...
2
votes
3answers
481 views

How do I down-cast a c++ object from a python SWIG wrapper?

The problem: I've wrapped some c++ code in python using SWIG. On the python side, I want to take a wrapped c++ pointer and down-cast it to be a pointer to a subclass. I've added a new c++ function to ...
2
votes
6answers
153 views

Cant copy construction be done without creating an explicit function in the pure virtual base class?

My objective is to do a deep copy of a class, but a virtual class is causing trouble. #include<iostream> using namespace std; class Vir//pure virtual class { public: virtual void ...
2
votes
4answers
130 views

Shallow copying a list with downcasting

I have the class herichary as follows CEntity---->CNode--->CElement I have a class Nodes : List<Cnode> and Class Elements : List<Element> Node class contain common item common ...
2
votes
2answers
304 views

Are there any C++ tools that detect misuse of static_cast, dynamic_cast, and reinterpret_cast?

The answers to the following question describe the recommended usage of static_cast, dynamic_cast, and reinterpret_cast in C++: ...
2
votes
1answer
606 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 ...
2
votes
4answers
538 views

Is downcasting (i.e. casting to derived type) ALWAYS wrong?

What is your perspective on downcasting? Is it ALWAYS wrong, or are there cases where it is acceptable, or even preferable or desired? Is there some good measure/guideline we can give that tells us ...
2
votes
2answers
452 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. ...
2
votes
3answers
553 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 ...
1
vote
3answers
67 views

Why Base-to-Derived Dynamic Casting is Only Allowed for Polymorphic Classes [closed]

Possible Duplicate: FAQ: Why does dynamic_cast only work if a class has at least 1 virtual method? I have read that in C++, performing a dynamic cast down the hierarchy of a set of classes, ...
1
vote
2answers
39 views

Use Method by Real Type

I learned that I can use the real type of a Object to define which Method is used, such like this: [...] Object foo = new String("hello"); [...] bla(foo); void bla(String x){ } void bla(Integer x){ ...
1
vote
2answers
82 views

Interface Downcasting

Please suppose I have the following extension method in order to be able to force evaluation of an IEnumerable: public static List<T> EvaluateNow<T>(this IEnumerable<T> collection) ...
1
vote
1answer
252 views

Downcasting with Entity Framework

I have a project where I've defined in EF an Employer as a derived class of User. In my process I create a user without knowing whether it will eventually be an employer (or other kinds of users) and ...
1
vote
2answers
44 views

Type parameters - get concrete type from type T : IMyInterface

Suppose I have a List<IMyInterface>... I have three classes which implement IMyInterface: MyClass1, MyClass2, and MyClass3 I have a readonly Dictionary: private static readonly ...
1
vote
1answer
91 views

problem with a HashSet's Iterator

I'm trying to see if HashSet would be the solution for my next project so i'm doing some very easy test to check functionalities. I have a simple class Klant: public class Klant { private int ...
1
vote
4answers
262 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 ...
1
vote
1answer
261 views

Trying to downcast Object to File in java

i wrote the next piece of code: private ArrayList<File> filter() { ArrayList<File> result = _filters.get(0).buildTree(_dir.listFiles()); for (int i=1; i<_filters.size(); ...
1
vote
4answers
216 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
202 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
154 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 ...
1
vote
2answers
118 views

Operator-function + with two implicit casts doesn't work

I'm trying to port some parts from ginac (www.ginac.de) to C#. But I encountered this: class Program { static void Main(string[] args) { symbol s = new symbol(); numeric n ...
0
votes
1answer
115 views

C++ A polymorphic class, virtual function and casting for performance

I have the following classes: class State { protected: Vec3D accel; Vec3D gyro; Vec3D gps; float reward; public: boost::ptr_vector<Action> actions; ... virtual ...
0
votes
4answers
132 views

Downcasting from Object to Integer Runtime Error: java.lang.ClassCastException

Run time exception-- java.lang.ClassCastingException... Integer intArr[] = new Integer[arrList.size()]; ArrayList <Integer> arrList =new ArrayList(); intArr=(Integer[])arrList.toArray(); // ...
0
votes
2answers
198 views

Scala: downcasting throws java.lang.ClassCastException

Coming from a non-Java background to Scala has brought me a wide range of difficulties including this one. scala> class A defined class A scala> class B extends A defined class B ...
0
votes
3answers
151 views

C++ - faster downcasting children of a tree-node?

I have a simple hierarchy tree structure with a base class Node representing a node. A node could be of another specific type (subclassing). class Node { vector<Node*> childs; // simple ...
0
votes
2answers
189 views

C# Down-casting question

Is it valid and legal and to down-cast in the following case: public interface IA { string Property1 {get;} } public class B { public string Name {get;set;} } // class A doesn't have it's own ...
0
votes
3answers
264 views

Detect Object type then cast it accordingly?

My method takes as input an Object. How do i determine it's type, then cast it accordingly? So for example: binarySearch( Object o ); Inside the binarySearch method, i need a way to determine the ...
0
votes
2answers
90 views

Trying to understand how the casting/conversion is done by compiler,e.g., when cast from float to int

When a float is casted to int, how this casting is implemented by compiler. Does compiler masks some part of memory of float variable i.e., which part of memory is plunked by compiler to pass the ...
0
votes
4answers
275 views

Java downcasting and is-A has-A relationship

HI, I have a down casting question, I am a bit rusty in this area. I have 2 clasess like this: class A{ int i; String j ; //Getters and setters} class B extends A{ String k; //getter and setter} I ...
0
votes
3answers
465 views

How to properly downcast in C# with a SWIG generated interface?

I've got a very large and mature C++ code base that I'm trying to use SWIG on to generate a C# interface for. I cannot change the actual C++ code itself but we can use whatever SWIG offers in the way ...

1 2