Tagged Questions

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 ...
30
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 ...
28
votes
7answers
9k views

Generic type checking

Is there a way to enforce/limit the types that are passed to primitives? (bool, int, string, etc.) Now, I know you can limit the generic type parameter to a type or interface implementation via the ...
7
votes
5answers
3k views

What is the meaning of the type safety warning in certain Java generics casts?

What is the meaning of the Java warning "Type safety: The cast from Object to List is actually checking against the erased type List"? I get it when I try to cast an Object to a type with generic ...
6
votes
3answers
142 views

Type-safe setting of objects with a dictionary that has a `Type` key

I have a generic dictionary of objects where the key is of type Type: public class DynamicObject : IDictionary<Type, object> The idea is that this object is shared in a plugin-based ...
6
votes
3answers
313 views

Generics in VB.NET

Now, as a C# programmer, I know that generics are awesome. However, when dabbling in some VB.NET, I discovered that the following does not cause a compiler error: Dim instance As List(Of Integer) ...
5
votes
3answers
134 views

Type-safe flattening of nested collections/structures in Java

I would like to flatten arbitrary deeply nested collections/structures of elements of some type T in Java, optimally with only having a live view and not a copied collection; not only handling ...
5
votes
7answers
261 views

How do you test the type-safetiness of your genericized API?

You can use e.g. JUnit to test the functionality of your library, but how do you test its type-safetiness with regards to generics and wildcards? Only testing against codes that compile is a "happy ...
5
votes
3answers
705 views

Generics and sorting in Java

Suppose you write a static function in Java to sort an array, much like Arrays.sort(). The problem with Arrays.sort() is that it receives an array of Object, and throws a ClassCastException if its ...
5
votes
9answers
3k views

Java: type safety, generics, .equals()

I'm trying to override equals() for a parametrized class. How can I make sure that this parameter is the same? /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) * Because this is ...
4
votes
4answers
160 views

mix generic type variables to implement a type-safe map function in Java

I want to write a type-safe map method in Java that returns a Collection of the same type as the argument passed (i.e. ArrayList, LinkedList, TreeSet, etc.) but with a different generic type (that ...
4
votes
3answers
1k views

Java Generics Type Safety warning with recursive Hashmap

I'm using a recursive tree of hashmaps, specifically Hashmap map where Object is a reference to another Hashmap and so on. This will be passed around a recursive algorithm: foo(String filename, ...
3
votes
3answers
57 views

Replacing non type safe with type safe generic method

Im looking for a way to replace the following: public class NonTypeSafe { private List<object> contents = new List<object>(); public List<object> Contents {get { return ...
3
votes
2answers
117 views

Prevent method call using compiler tricks

I have roughly these types: interface Record {} interface UpdatableRecord extends Record {} interface Insert<R extends Record> { // Calling this method only makes sense if <R extends ...
3
votes
2answers
155 views

Type-safe mapping from Class<T> to Thing<T>

I want to make a map-kind of container that has the following interface: public <T> Thing<T> get(Class<T> clazz); public <T> void put(Class<T> clazz, Thing<T> ...
2
votes
3answers
77 views

Java type safety warning

I'm trying to make an array of vectors like this: Vector<String>[] wordList = new Vector[29]; for (int i = 0; i < wordList.length; i++) { wordList[i] = new Vector<String>(100); } ...
2
votes
4answers
318 views

Type safety : Unchecked cast and Generics

I have a very simple map private Map<String,T> map = Collections.synchronizedSortedMap(new TreeMap<String,T>()); I would like to define the following method public T[] values(){ ...
2
votes
4answers
683 views

Java generics: why someObject.getClass() doesn't return Class<? extends T>?

I would expect that from the aspect of compile time as well as from the aspect of runtime it wouldn't be a problem for .getClass() to provide a correctly-typed return value. But I must be wrong. ...
2
votes
3answers
431 views

Convert java legacy code to generic - how to replace Object with type?

// legacy code void setCacheValue(String name, Object value){ getServletContext().setAttribute(name, value); } Object getCacheValue(String name){ return ...
1
vote
2answers
188 views

How parametrize generic singleton in java

I have next problem. I have an interface: public interface Worker<T> { public void start(Class<? extends T> taskClass); } and singleton implementation of this interface: public ...
1
vote
2answers
2k views

Java Builder pattern with Generic type bounds

I'm attempting to create a class with many parameters, using a Builder pattern rather than telescoping constructors. I'm doing this in the way described by Joshua Bloch's Effective Java, having ...
0
votes
4answers
88 views

Generic parameter as variable - Java

The constructor NotePanel(itemClass) refers to the missing type itemClassI have a class NotePanel<T extends AbstractNoteItem> extends JPanel, and a method in a separate class that returns a ...
0
votes
2answers
77 views

Type erasure and collections

I am having a specific problem implementing a parametrised class Parameter, but this is something I have come across before with generics, so a general solution would be good.. The class Parameter ...
0
votes
7answers
399 views

Best way to design a multi-type object

Let's say I have a data object, but this object can hold one of several types of data. class Foo { int intFoo; double doubleFoo; string stringFoo; } Now, I want to create an accessor. ...