Tagged Questions
The nested-generics tag has no wiki summary.
15
votes
2answers
342 views
Java Generics Hell
I suspect this has been asked here (and answered) before, but I don't know how to name the problem. Why can I express the wildcards without problem only when I'm not passing the class itself?
It ...
7
votes
1answer
216 views
Why can't nested generic types be inferred?
Given the following classes...
public abstract class FooBase<TBar> where TBar : BarBase{}
public abstract class BarBase{}
public class Bar1 : BarBase{}
public class Foo1 : FooBase<Bar1> ...
7
votes
3answers
219 views
Please help me understand polymorphism when using generics in c#
I am having a problem understanding how polymorphism works when using generics. As an example, I have defined the following program:
public interface IMyInterface
{
void MyMethod();
}
public ...
6
votes
0answers
61 views
Hidden type inference with generics? [closed]
Possible Duplicate:
No type inference with generic extension method
I have a generic interface, and two concrete implementations of it.
I then have a method which is an extension method on ...
5
votes
3answers
82 views
Nested Type Parameters in Java
This is an example which I made up to be a simplification of my real code, so I apologize if it is a little contrived. What I would like to do is to effectively get two type parameters out of a single ...
5
votes
2answers
174 views
Why wouldn't C# support generics of generics (generics with parameterized types)?
Recently (perhaps of design shortcomings) I faced a regular task when required to have a collection of MyType<T> where T is not fixed (i.e. multiple various generics instantiations throughout ...
4
votes
3answers
82 views
Generic java class that stores comparables
I have a generic java class that stores comparables:
public class MyGenericStorage<T extends Comparable<T>> {
private T value;
public MyGenericStorage(T value) {
...
4
votes
3answers
188 views
how to declare Class.class with valid generics
Note: purely out of curiosity and not for any actual use case.
I'm wondering if there is a way to declare the Class Class object with valid type parameters:
Class cc1 = Class.class; //raw type
...
3
votes
2answers
541 views
Generic tree, self bounded-generics
I am to adding genericity to one of my projects.
I love generics as this makes my code more robust, self-documented and erases all those ugly casts.
However, I came across a tough case and have some ...
3
votes
1answer
264 views
Passing a reference to a TObjectDictionary<TKey, TValue>.TValueEnumerator
I am trying to use Delphi 2010's TObjectDictionary generic.
I would like to pass an enumerator of the Values property of that generic class, and the compiler doesn't seem to want to let me... ...
2
votes
1answer
37 views
Bounded wilcard not working for List inserted in Map
The following code explains my problem:
interface f1 {}
interface f2 extends f1{}
1. List<? extends f1> l1 = new ArrayList<f2>();
2. Map<String, ? extends f1> m1 = new ...
2
votes
4answers
138 views
What do nested generics in C# mean?
A bit of a basic question, but one that seems to stump me, nonetheless.
Given a "nested generic":
IEnumerable<KeyValuePair<TKey, TValue>>
Is this stating that IEnumerable can have ...
1
vote
2answers
99 views
Nested generics in Java methods?
I'm creating my own MVP framework, and I'm running into trouble with the generics.
My presenter is defined like this, with an inner class holding references to child elements which are also generic ...
1
vote
4answers
124 views
How do I get this system of nested generic parameters working?
So I'm trying to get a reasonably complicated system working. Here's the basics of what I'm attempting.
Rules:
abstract class Rule
{
// stuff
}
class ExampleRule extends Rule
{
// stuff
}
...
1
vote
3answers
89 views
Returning or inheriting a generic that contains a nested class
I am noticing some extremely strange behaviour when using a class layout that looks like this:
// Contents of assembly A:
public class MyParentClass
{
public class NestedClass
{
}
}
// ...
1
vote
1answer
95 views
Generic Visibility of inner classes?
I have a code piece that looks something like what I've pasted below:
import java.util.LinkedHashMap;
import java.util.Map;
public class GenericMagic {
GenericMagic() {
}
private class ...
1
vote
4answers
733 views
Java: Nested generics?
Can Java nest generics? The following is giving me an error in Eclipse:
ArrayList<ArrayList<Integer>> numSetSet = ArrayList<ArrayList<Integer>>();
The error is:
Syntax ...
0
votes
4answers
46 views
Generics Node declaration
Microsoft gives this as an Bubble sort example for learning generics. It makes sense until I get to lines 76 and 77. How are those declarations possible? Node is a class. Don't you have to ...
0
votes
2answers
48 views
how to specify nested generics in eclipse
I want to specify this type:
Map<String,Map<String,String>> blah = null;
But Eclipse refuses this. I am not sure if it is Eclipse or the Java parser.
I had similar issues when trying ...