Tagged Questions
The type-erasure tag has no wiki summary.
69
votes
8answers
7k views
How do I get around type erasure on Scala? Or, why can't I get the type parameter of my collections?
It's a sad fact of life on Scala that if you instantiate a List[Int], you can verify that your instance is a List, and you can verify that any individual element of it is an Int, but not that it is a ...
25
votes
4answers
1k views
Type erasure techniques
(With type erasure, I mean hiding some or all of the type information regarding a class, somewhat like Boost.Any.)
I want to get a hold of type erasure techniques, while also sharing those, which I ...
22
votes
2answers
265 views
Why does unique_ptr have the deleter as a type parameter while shared_ptr doesn't?
The std::unique_ptr template has two parameters: the type of the pointee, and the type of the deleter. This second parameter has a default value, so you usually just write something like ...
16
votes
2answers
9k views
Type erasure, overriding and generics
Can someone explain to me why
@Override
public void fooMethod(Class<?> c)
doesn't override
public void fooMethod(Class c)
and gives me the following errors instead:
- Name clash: The ...
15
votes
2answers
11k views
Class is a raw type. References to generic type Class<T> should be parameterized
There are lots of threads about this type of question, but I want to get a complete answer and actually understand it without 'hiding' the problem with a @SupressWarnings !
I have the following class ...
15
votes
6answers
5k views
Java generics - type erasure - when and what happens
I read about Java's type erasure on Sun's website.
When does type erasure occur? At compile time / runtime:when the class is loaded / runtime:when the class is instantiated?
A lot of sites ...
10
votes
4answers
174 views
Why does erasure complicate implementing function types?
I read from an interview with Neal Gafter:
"For example, adding function types to the programming language is much more difficult with Erasure as part of Generics."
EDIT:
Another place where ...
10
votes
4answers
275 views
Type Erasure and Overloading in Java: Why does this work?
I have the following code:
public class Pair< T, U > {
public T first;
public U second;
}
public class Test {
public int method( Pair< Integer, Integer > pair ) {
...
10
votes
9answers
1k views
Scala double definition (2 methods have the same type erasure)
I wrote this in scala and it won't compile:
class TestDoubleDef{
def foo(p:List[String]) = {}
def foo(p:List[Int]) = {}
}
the compiler notify:
[error] double definition:
[error] method ...
10
votes
4answers
262 views
Why are not all type information erased in Java at runtime?
My obviously wrong understanding of Java Generics was up to now, that Type Erasure removes all type information such that there is nothing left at all at runtime. Recently I stumbled upon a code ...
9
votes
2answers
169 views
Scala: Case class unapply vs a manual implementation and type erasure
I'm trying to understand what Scala does with Case Classes that makes them somehow immune to type erasure warnings.
Let's say we have the following, simple class structure. It's basically an Either:
...
8
votes
3answers
189 views
Why does Scala warn about type erasure in the first case but not the second?
I have two functions (not these have been edited since the original -- some of the answers below are responding to the original ones which returned a sequence of ()):
def foo1[A](ls: Iterable[A]) : ...
8
votes
2answers
218 views
What does the Java Compiler do with multiple generic bounds?
Have a look at this (arguably stupid) code:
public <T extends Appendable & Closeable> void doStuff(T object)
throws IOException{
object.append("hey there");
object.close();
}
I ...
8
votes
6answers
707 views
How can I differentiate between def foo[A](xs: A*) and def foo[A, B](xs: (A, B)*)?
I know that type erasure makes them look equal, type-wise, at runtime, so that:
class Bar {
def foo[A](xs: A*) { xs.foreach(println) }
def foo[A, B](xs: (A, B)*) { xs.foreach(x => ...
7
votes
4answers
99 views
Avoiding Java Type Erasure
Is there a way one could avoid type erasure and get access to a type parameter?
public class Foo<T extends Enum<?> & Bar> {
public Foo() {
// access the template class ...
7
votes
2answers
205 views
Why this erasure warning with member variables declared as a tuple?
Have a look at this Scala class:
class Example {
val (x, y): (Int, Int) = (1, 2)
}
Compiling this results in a warning:
Example.scala:2: warning: non variable type-argument Int in type pattern
...
7
votes
2answers
225 views
Feature or Bug:Why does this Java code compile? [closed]
Possible Duplicate:
Is this valid Java?
I was surprised to discover the Java class below compiles.
It has several method, with the same name, number of arguments and following type-erasure ...
7
votes
2answers
1k views
Java class object from type variable
Is there a way to get Class object from the type variable in Java generic class? Something like that:
public class Bar extends Foo<T> {
public Class getParameterClass() {
return ...
6
votes
3answers
95 views
Duplicate methods due to type erasure in spite of @specialized
Stumbled over that
def foo(f: Int => Unit) {}
def foo(f: Long => Unit) {}
doesn't compile because of method foo is defined twice. I know that above is only a shorthand for
def foo(f: ...
6
votes
1answer
204 views
For Scala are there any advantages to type erasure?
I've been hearing a lot about different JVM languages, still in vaporware mode, that propose to implement reification somehow. I have this nagging half-remembered (or wholly imagined, don't know ...
6
votes
4answers
536 views
Java Generics - <int> to <Integer>
In the way of learning Java Generics, I got stuck at a point.
It was written "Java Generics works only with Objects and not the primitive types".
e.g
Gen<Integer> gen=new ...
6
votes
4answers
1k views
Generic Restriction Hell: Bound Mismatch
I'm working on a project that has an extensive tree of generic inheritance and dependencies. Go to edit to see better example. The basics look something like this:
class A {
...
}
class B {
...
...
6
votes
4answers
1k views
weird behavior around “same erasure” compilation error
I recently stumbled upon a piece of code that would not compile in my Eclipse due to the "same erasure" issue (looked very similar to this one). The guys who wrote the code assured me that it compiles ...
6
votes
4answers
207 views
Cannot compile a class which implements an interface without type parameter
I have the following test code:
public interface Container<I> {
public void addClass(Class<?> clazz);
}
public class MyContainer implements Container {
public void ...
6
votes
9answers
474 views
Just-In-Time Derivation
There's a less common C++ idiom that I've used to good effect a few times in the past. I just can't seem to remember if it has a generally used name to describe it.
It's somewhat related to mixins, ...
5
votes
2answers
98 views
Rules for determining the set of function type compatible with std::function<R(T1,T2)>?
Suppose if I have this,
std::function<int(int,int)> fs;
then how can I determine the set of functions (or function objects) which fs can be initialized with?
Which of the folllowing is ...
5
votes
1answer
263 views
Using collect on maps in Scala
I recently stumbled over this post, which "introduces" the collect method for Scala collections. The usage is straight forward:
scala> val ints = List(1, "2", 3) collect { case i: Int => i }
...
5
votes
3answers
203 views
accessing parameterized type information at runtime [closed]
Possible Duplicate:
Why are not all type information erased in Java at runtime?
Java's generics are implemented via type erasure, so I thought it was no possible to get any information ...
5
votes
5answers
378 views
Java generics and type erasure
Given the following code:
public void example(Object o) {
if(o instanceof List<MyType>)
//do something
}
I understand that this is not possible (and why its not possible) given the way ...
5
votes
3answers
592 views
java type erasure vs. Field#getGenericType and Method#getGenericReturnType
As I understand them, generics are a compile time feature of Java, and parametrized type information does not exist in the compiled byte code. I have now discovered the Field#getGenericType and ...
4
votes
6answers
76 views
How to sort an java.util.ArrayList<ParentType> based on ChildType?
public interface Human<T> extends Comparable<T>{ }
public class Men implements Human<Men>{
public Men(String firstName) {
this.firstName = firstName;
}
.....
}
public class ...
4
votes
3answers
231 views
scala 2.9: plans for type inference of function parameters with default arguments?
I'm just getting started with Scala. I've been using Python for research programming, and I'm converting a fairly large (~ 4000 line) Python program.
A few comments:
It looks like the right time ...
4
votes
2answers
673 views
Serializing Map<Date, String> with Jackson
I want to serialize a Map with Jackson.
The Date should be serialized as a timestamp, like all my other dates.
The following code renders the keys in the form "Tue Mar 11 00:00:00 CET 1952" (which is ...
4
votes
1answer
168 views
Type Erasure in Java
Type erasure is supposed to erase all generic information...
If this is the case how does a library like GSON use generics to determine what type to deserialize to?
e.g.
private ...
4
votes
3answers
233 views
Scala: Problems with erasure on overriding equals function for parametrized classes
I'm having troubles on understanding well how to use manifests.
That's my problem:
I've creat a new parametrized class C and tryed to override equals like this:
override def equals(that:Any)=that ...
4
votes
3answers
589 views
How can I match a function signature without getting type erasure compiler warnings in Scala
Can anyone re-write this code to do the same thing but without any compiler warnings please:-
object TestTypeErasure {
def main(args:Array[String]) {
def myFunction(myObject:Any):Boolean = {
...
3
votes
3answers
152 views
What mechanisms does Scala have for generics and wildcards compared to Java?
I am frequently pushing the limits of Java's type system through my use of Guice, TypeLiteral, generics, and wildcards. I often run into situations where I need to perform unchecked casts, which ...
3
votes
3answers
95 views
Generics Erasure
I would like to know why would be a problem if Java would have generics without erasure. I know the issue is compatibility with older libraries but wouldn't that be fine to put Object in place of type ...
3
votes
4answers
117 views
Is it possible to create my own event listener list in Java containing multiple listener types?
I'm implementing a client-server system where the client is in a continuous blocking read loop listening for messages from the server. When a message is received I'd like to raise an "event" based on ...
3
votes
3answers
126 views
Java Type Erasure and Overloading?
Can anyone explain in simple terms why in the below class, when I pass in a String, Integer or UUID, only the method overload taking Object as a parameter is used?
public final class ...
3
votes
1answer
100 views
Using a Type with collect
I'm trying to dynamically filter (or collect) a list based on type:
If I do this specifying the type explicitly, it works fine
scala> var aList = List("one", 2, 3.3)
aList: List[Any] = List(one, ...
3
votes
2answers
96 views
Java erasure with generic overloading (not overriding)
I have FinanceRequests and CommisionTransactions in my domain.
If I have a list of FinanceRequests each FinanceRequest could contain multiple CommisionTransactions that need to be clawed back. Dont ...
3
votes
1answer
160 views
Subclassing HashMap in Scala, working around type erasure
Let's say that for some good reason I want a generic HashMap that contains all types of objects. I also want to push any unsightly instanceof-like type checks into the data structure. To this end, a ...
3
votes
3answers
172 views
Java Generics Type Erasure Method Signature Problem
Given the following hypothetical type hierarchy:
BaseElement
+ StringElement
+ ....
+ ....
+ BooleanElement
+ ....
+ ....
+ ...
I have a class interface in the form:
...
3
votes
4answers
222 views
Type erasure for methods with differing in return types
I was wondering if some form of type erasure exists for dealing with methods that have the same name and arguments but return different values like in my example below (begin and end). I'm not ...
3
votes
2answers
221 views
Getting around a type-erasure problem in pattern-matching
i'm trying to work around a type erasure in pattern matching. assuming:
import java.io._
trait Serializer[ V ] {
def save( os: OutputStream, v: V ) : Unit
def load( in: InputStream ) : V
}
...
3
votes
2answers
297 views
Cast values from Any using ClassManifest in Scala
I've got a List[Any] of values and a list of corresponding ClassManifest[_]s, storing values' original types. How do i cast some value from list back to it's original type?
def cast[T](x: Any, mf: ...
3
votes
3answers
321 views
C++ -& CRTP . Type erasure vs polymorphism
OK here we go. I'm trying to use the CRTP template in order to remove the need of polymorphism from my app. I use an aproach like the one bellow
template <RealType> class Base
{
void ...
3
votes
4answers
1k views
Getting around Type Erasure in Java
So, the group I work with has reduced the amount of code we have to type for certain things. In this case, a Spring web page that displays a list using the DisplayTag libraries. The way it's done is ...
3
votes
5answers
621 views
Java Type Erasure Problem
I've made an example to demonstrate my problem:
Metrical.java
public interface Metrical<T>
{
double distance(T other);
}
Widget.java
public class Widget implements ...