Tagged Questions
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 = ...
4
votes
3answers
134 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
...
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
2answers
71 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 ...
6
votes
2answers
298 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 ...
1
vote
1answer
531 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 ...
4
votes
2answers
617 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?
2
votes
4answers
176 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 ...