1
vote
4answers
64 views
Why do we have generics when we can store things(values and ref) in a ArrayList?
DUPLICATE:
http://stackoverflow.com/questions/77632/what-is-cool-about-generics-why-use-them
My basic question is same as title. But I want to know something more that can enlightened me with the …
0
votes
1answer
9 views
XML alternative of Text.JSON.Generic for Haskell
Is there any XML-(de)serializer for Haskell using Data/Typeable with functions similar to
toXml :: Data d => d -> XmlValue
fromXml :: Data d => String -> Result d
in the spirit of …
2
votes
4answers
137 views
Generic Arrays in Java
Ok, I've been google'ing the web and I just can't seem to find any solution to my problem. I found lots of solutions, just not any that fit.
I need to create an array of generics. But the generic …
1
vote
13answers
193 views
generic programming in java
I have some confusion about generic programming in java:
If Manager is subclass of Employee,
Collection<Manager> managers=new Collection<Manager>;
Collection<Employee> …
1
vote
4answers
76 views
C# Generics, Constrain to Specific Structs
Is it possible to constrain a genericised method to accept only specific types of struct?
This is OK I believe:
string Add<T>(object value, T expiration) where T : struct;
but this isn't it …
3
votes
3answers
102 views
C# Generics and polymorphism: an oxymoron?
I just want to confirm what I've understood about Generics in C#. This has come up in a couple code bases I've worked in where a generic base class is used to create type-safe derived instances. A …
0
votes
3answers
72 views
Java generic parameter itself using generics?
I'm trying to figure out how to structure a program using Java's generics, and wondering if I am doing something fundamentally wrong or just missing a simple bug in my code.
Say I have a generic …
1
vote
3answers
104 views
Java generics issue with Class
Can't figure out this generics problem. I have these interfaces:
public interface LoadableObject
{
}
public interface LoadableObjectFactory<T>
{
}
And now I want to do this:
public class …
4
votes
1answer
54 views
Forcing F# type inference on generics and interfaces to stay loose
We're gettin' hairy here. I've tested a bunch of tree-synchronizing code on concrete representations of data, and now I need to abstract it so that it can run with any source and target that support …
2
votes
2answers
153 views
c# - How to deserialize a generic list<T> when I don’t know the type of (T)?
Hi, for auditory reasons I stores the arguments of the business methods serialized into the database using the binaryformatter.
The problem is that when an argument is a generic list I don't find …
1
vote
4answers
62 views
The type Collection is not generic; it cannot be parameterized with arguments <? extends E>
Hi!
I have a strange problem with eclipse galileo.
I set java 1.6 as jre. And for this line of the code
List templates = new ArrayList ();
I see such error in eclipse problem list:
The type …
2
votes
3answers
61 views
The same property name but different return type in a generic list
Beginner's question: How to implement a generic list List<Item> returning items with a property named Data but returning different types for different subclasses? I started building the …
0
votes
0answers
42 views
Why is flatten declared on GenericTraversableTemplate and not TraversableLike?
The signature of TraversableLike.flatMap is as follows:
def flatMap[B, Th](f : (A) => Traversable[B])(implicit bf : CanBuildFrom[Repr, B, Th]) : Th
The signature of …
0
votes
6answers
95 views
How to use an Interface as Map’s Key
I am looking for help on the subject how to use an Interface as Maps Key. I tried to implement a solution, and get no compiletime errors but runtime errors when running my integration tests. Is it not …
2
votes
2answers
79 views
Type inference: Using generic methods with implicit type conversion
The problem is that you want to flatMap a List[Option[T]] to a List[T] :
val l = List(Some("Hello"), None, Some("World"))
to get:
List(Hello, World)
but there is no nice solution:
l flatMap( o …
