0
votes
3answers
37 views
Java generics/abstract/innerclass syntax question
I've got the following:
public abstract class Foo<T>{
//contents of Foo //
...
public class Bar<Q> extends Foo<T>{
//contents of Foo.Bar / …
3
votes
6answers
144 views
Is List<List<String>> an instance of Collection<Collection<T>>?
I wrote this handy, generic function for converting a collection of collections into a single set:
public static <T> Set<T> makeSet(Collection<Collection<T>&g …
0
votes
2answers
40 views
Java bounded wilcard type
Hi,
I need to define a generic class, and the type parameter must be an enum. I think it should look something like
public class <T> MyClass<T extends Enum<T>> …
0
votes
2answers
47 views
Java Generics: compareTo and “capture#1-of ?”
The following gives me an error message:
public static List<Comparable<?>> merge(Set<List<Comparable<?>>> lists) {
List<Comparable<?>> r …
3
votes
2answers
107 views
Java: Why isn’t autoboxing happening here?
This gives me an error:
int[] l = new int[] {0, 2, 192, -1, 3, 9, 2, 2};
int[] l2 = new int[] {9001, 7, 21, 4, -3, 11, 10, 10};
int[] l3 = new int[] {5, 5, 5, 64, 21, 12, 13, 2 …
6
votes
15answers
237 views
Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated?
In general I come across this a lot. Some of my co-workers prefer very simple, easy to read classes even if that means that there is some code duplication, whereas I do everything …
0
votes
4answers
108 views
How to code a truly generic tree using Generics
Lets say I have a Node class as follows:
class Node<T>
{
T data;
List<Node<T>> children;
internal Node(T data)
{
…
0
votes
4answers
62 views
Java: upcasting Collection<T> to Collection<U super T>
I have a Collection<T>. I have a class TManager implementing an interface UManager which has a method getCollection() that needs to return a Collection<U> where U is an …
2
votes
5answers
94 views
Java reflection: What does my Collection contain?
Hi guys,
I've defined a method in a class:
public void setCollection(Collection<MyClass>);
and in another class
public void setCollection(Collection<OtherClass>);
…
3
votes
4answers
65 views
Visual Studio Intellisense not showing methods on generic overload
Given the following two interfaces (these are small examples, not my actual implementation):
public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAss …
9
votes
6answers
301 views
C# Improved algorithm
I have been asked at interview (C# 3.0) to provide a logic to remove a list of items from a list.
I responded
int[] items={1,2,3,4};
List<int> newList = new List<int> …
1
vote
2answers
119 views
Delphi: generics and ‘is’-operator problem
Based on an earlier post, I've written the following code. Please excuse the verbosity of this post. I believe it's better for all parties to have the full code available to test a …
0
votes
4answers
162 views
Can I do this Generic thing?
Hi there:
It seems I'm missing something with Java Generics because something I think is simple, it appears to me that can´t be done. Maybe you can help...
This is the scenario: I …
0
votes
3answers
60 views
Functional depedency analysis
Developers who have used eclipse cannot miss out the Cntrl+Shift+G combo - the easiest way to find all references to a particular member/method/class in your workspace.
Consider a …
0
votes
4answers
66 views
Java generics: multiple generic parameters?
Hello, I was wondering if it's possible to write a function that accepts multiple generic types as follows:
public int void myfunction(Set<T> a, Set<T> b) {
return …
