Tagged Questions
Generic programming is a style of computer programming in which algorithms are written in terms of to-be-specified-later types that are then instantiated when needed for specific types provided as parameters.
173
votes
5answers
98k views
How to create ArrayList (ArrayList<T>) from array (T[]) in Java
I have an array that is initialised like:
Element[] array = {new Element(1),new Element(2),new Element(3)};
I would like to convert this array into an object of the ArrayList class.
...
95
votes
14answers
27k views
Create Generic method constraining T to an Enum
I'm building a function to extend the Enum.Parse concept that
Allows a default value to be parsed in case that an Enum value is not found
Is case insensitive
So I wrote the following:
public ...
90
votes
6answers
98k views
C# List<> OrderBy Alphabetical Order
I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. How would I sort ...
85
votes
14answers
8k views
What are the differences between Generics in C# and Java… and Templates in C++?
I mostly use Java and generics are relatively new. I keep reading that Java made the wrong decision or that .NET has better implementations etc. etc.
So, what are the main differences between C++, ...
84
votes
12answers
81k views
Remove duplicates from a List<T> in C#
Anyone have a quick method for de-duplicating a generic List in C#?
83
votes
4answers
8k views
Why does C# forbid generic attribute types?
This causes a compile-time exception:
public sealed class ValidatesAttribute<T> : Attribute
{
}
[Validates<string>]
public static class StringValidation
{
}
I realize C# does not ...
82
votes
14answers
38k views
C# - List<T> or IList<T>
Can anyone explain to me why I would want to use IList over List in C#?
Related question: Why is it considered bad to expose List<T>
75
votes
9answers
25k views
C# Generic new() constructor problem
I'm trying to create a new object of type T via its constructor when adding to the list.
I'm getting a compile error: The correct error message is: 'T': cannot provide arguments when creating an ...
70
votes
4answers
20k views
How to use reflection to call generic Method?
What's the best way to call a generic method when the type parameter isn't known at compile time, but instead is obtained dynamically at runtime?
Consider the following sample code - inside the ...
63
votes
8answers
36k views
C# reflection: check if a class is derived from a generic class
I have a generic class in my project with derived classes.
public class GenericClass <T> : GenericInterface<T>
{
......
}
public class Test : GenericClass <SomeType>
{
}
Is ...
62
votes
10answers
61k views
Java how to: Generic Array creation
Due to the implementation of Java Generics you can't have code like this. How can I implement this while maintaining type safety?
public class GenSet<E> {
private E a[];
public ...
60
votes
11answers
62k views
How do I clone a generic list in C#?
I have a generic list of objects in C#, and wish to clone the list. The items within the list are cloneable, but there doesn't seem to be an option to do list.Clone()
Is there an easy way around ...
56
votes
8answers
55k views
C# generic list <T> how to get the type of T?
Let say I have a List< T > abc = new List< T >; inside a class public class MyClass<T>//.... Later, when I initialize the class the T becomes MyTypeObject1. So I have a generic list ...
55
votes
7answers
4k views
What are the reasons why Map.get(Object key) is not (fully) generic
What are the reasons behind the decision to not have a fully generic get method
in the interface of java.util.Map<K,V>.
To clarify the question, the signature of the method is
V get(Object ...
55
votes
19answers
45k views
How do I address unchecked cast warnings?
Eclipse is giving me a warning of the following form:
Type safety: Unchecked cast from Object to HashMap<String, String>
This is from a call to an API that I have no control over which ...
51
votes
5answers
32k views
Nullable type as a generic parameter possible?
I want to do something like this :
myYear = record.GetValueOrNull<int?>("myYear"),
Notice the nullable type as the generic paramater.
Since the GetValueOrNull function could return null my ...
49
votes
10answers
1k views
Is this valid Java?
Is this valid Java?
import java.util.Arrays;
import java.util.List;
class TestWillThatCompile {
public static String f(List<String> list) {
System.out.println("strings");
...
49
votes
10answers
53k views
Create instance of generic type in Java?
Is it possible to create an instance of a generic type in Java? I'm thinking based on what I've seen that the answer is "no" (due to type erasure), but I'd be interested if anyone can see something ...
46
votes
13answers
3k views
Why do some claim that Java's implementation of generics is bad?
I've occasionally heard that with generics, Java didn't get it right. (nearest reference, here)
Pardon my inexperience, but what would have made them better?
46
votes
9answers
14k views
Can't operator == be applied to generic types in C#?
According to the documentation of the == operator in MSDN,
For predefined value types, the
equality operator (==) returns true if
the values of its operands are equal,
false otherwise. For ...
45
votes
11answers
2k views
Why should I care that Java doesn't have reified generics?
This came up as a question I asked in an interview recently as something the candidate wished to see added to the Java language. It's commonly-identified as a pain that Java doesn't have reified ...
45
votes
16answers
15k views
C# generic constraint for only integers
Can anyone tell me if there is a way with c# generics to limit a type T to only
Int16, Int32, Int64, UInt16, UInt32, UInt64
I'm aware of the where keyword, but can't find an interface for only these ...
43
votes
2answers
3k views
Java Generics: What is PECS?
I came across PECS (short for Producer extends and Consumer super) while reading on Generics.
Can someone explain to me how to use PECS to resolve confusion between extends and super?
Thanks in ...
42
votes
6answers
22k views
Cast List<int> to List<string>
Does anyone know if you can cast a List<int> to List<string> somehow? I know I could loop through and .ToString() the thing but a cast would be awesome.
I'm in c# 2.0 (so no linq)
41
votes
4answers
846 views
Named arguments and generic type inference in C# 4.0
I had been programming under the assumption that, when calling a method in C# 4.0, supplying names for your arguments would not affect the outcome unless in doing so you were "skipping" one or more ...
41
votes
11answers
4k views
Passing a single item as IEnumerable<T>
Is there a common way to pass a single item of type T to a method which expects an IEnumerable<T> parameter? Language is C#, framework version 2.0.
Currently I am using a helper method (it's ...
39
votes
9answers
16k views
A generic list of anonymous class
In C# 3.0 you can create anonymous class with the following syntax
var o = new { Id = 1, Name = "Foo" };
Is there a way to add these anonymous class to a generic list?
Example:
var o = new { Id ...
39
votes
4answers
17k views
Java: Collections.emptyList() returns a List<Object>?
I'm having some trouble navigating Java's rule for inferring generic type parameters. Consider the following class, which has an optional list parameter:
import java.util.Collections;
import ...
39
votes
7answers
12k views
How can I return NULL from a generic method in C#?
I have a generic method with this (dummy) code (yes I'm aware IList has predicates, but my code is not using IList but some other collection, anyway this is irrelevant for the question...)
static T ...
38
votes
4answers
11k views
C# vs Java generics
I have heard that the Java implementation of Generics is not as good as the C# implementation. In that the syntax looks similar, what is it that is substandard about the Java implementation, or is it ...
38
votes
18answers
2k views
List<BusinessObject> or BusinessObjectCollection?
Prior to C# generics, everyone would code collections for their business objects by creating a collection base that implemented IEnumerable
IE:
public class CollectionBase : IEnumerable
and then ...
36
votes
7answers
847 views
Why doesn't this generic extension method compile?
The code is a little weird, so bear with me (keep in mind this scenario did come up in production code).
Say I've got this interface structure:
public interface IBase { }
public interface IChild : ...
36
votes
1answer
8k views
Java Generics Wildcarding With Multiple Classes
I want to have a Class object, but I want to force whatever class it represents to extend class A and implement interface B.
I can do:
Class<? extends ClassA>
Or:
Class<? extends ...
35
votes
11answers
24k views
C# Convert string to nullable type (int, double, etc…)
I am attempting to do some data conversion. Unfortunately, much of the data is in strings, where it should be int's or double, etc...
So what I've got is something like:
double? amount = ...
35
votes
3answers
11k views
Pass An Instantiated System.Type as a Type Parameter for a Generic Class
The title is kind of obscure. What I want to know is if this is possible:
string typeName = <read type name from somwhere>;
Type myType = Type.GetType(typeName);
MyGenericClass<myType> ...
33
votes
7answers
5k views
What is the point of the diamond operator in Java 7?
The diamond operator in java 7 allows code like the following:
List<String> list = new LinkedList<>();
However in Java 5/6, I can simply write:
List<String> list = new ...
33
votes
5answers
5k views
IEnumerable and Recursion using yield return
I have an IEnumerable<T> method that I'm using to find controls in a WebForms page.
The method is recursive and I'm having some problems returning the type I want when the yield return is ...
33
votes
6answers
6k views
Java Enum definition
I thought I understood Java generics pretty well, but then I came across the following in java.lang
Class Enum<E extends Enum<E>>
Could someone explain how to interpret this type ...
33
votes
12answers
37k views
In C#, why can't a List<string> object be stored in a List<object> variable
It seems that a List object cannot be stored in a List variable in C#, and can't even be explicitly cast that way.
List<string> sl = new List<string>();List<object> ol;ol = sl;
results ...
32
votes
7answers
16k views
What is the best way to clone/deep copy a .NET generic Dictionary<string, T>?
I've got a generic dictionary Dictionary that I would like to essentially make a Clone() of ..any suggestions.
31
votes
6answers
1k views
What is the difference between typeof and the is keyword?
What's the exact difference between the two?
// When calling this method with GetByType<AClass>()
public bool GetByType<T>() {
// this returns true:
return ...
31
votes
4answers
483 views
Why does the C# compiler complain that “types may unify” when they derive from different base classes?
My current non-compiling code is similar to this:
public abstract class A { }
public class B { }
public class C : A { }
public interface IFoo<T>
{
void Handle(T item);
}
public class ...
31
votes
7answers
14k views
Generic type conversion FROM string
I have a class that I want to use to store "properties" for another class. These properties simply have a name and a value. Ideally, what I would like is to be able to add typed properties, so that ...
29
votes
11answers
2k views
Best exception for an invalid generic type argument
I'm currently writing some code for UnconstrainedMelody which has generic methods to do with enums.
Now, I have a static class with a bunch of methods which are only meant to be used with "flags" ...
29
votes
2answers
3k views
Scala: Abstract Types vs Generics
I was reading this, http://www.scala-lang.org/node/105, and wondered when it was better to use Abstract Types e.g.
abstract class Buffer {
type T
val element: T
}
rather that generics, e.g.
...
29
votes
6answers
18k views
Why is C# List<> not thread-safe?
from this site:
http://crfdesign.net/programming/top-10-differences-between-java-and-c
Unfortunately, List<> is not
thread-safe (C#’s ArrayList and Java’s
Vector are thread-safe). C# also ...
29
votes
4answers
30k views
What causes javac to issue the “uses unchecked or unsafe operations” warning
For example:
javac Foo.java
Note: Foo.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
28
votes
5answers
3k views
What do I return if the return type of a method is Void? (Not void!)
Due to the use of Generics in Java I ended up in having to implement a function having Void as return type:
public Void doSomething() {
//...
}
and the compiler demands that I return something. ...
28
votes
7answers
62k views
How do you convert a DataTable into a generic list?
Currently, I'm using:
DataTable dt = CreateDataTableInSomeWay();
List<DataRow> list = new List<DataRow>();
foreach (DataRow dr in dt.Rows)
{
list.Add(dr);
}
Is there a ...
28
votes
7answers
4k views
Why aren't Java Collections remove methods generic?
Why isn't Collection.remove(Object o) generic?
Seems like Collection<E> could have boolean remove(E o);
Then, when you accidentally try to remove (for example) Set<String> instead of ...