In Java, type erasure is the process where the compiler removes all information related to type parameters and type arguments within a class or method when a generic type is instantiated.

learn more… | top users | synonyms

0
votes
1answer
32 views

type cast in EL expressions using Thymeleaf

How can I convert object types within EL expressions? Thymeleaf engine doesn't seem to understand something like this: <span th:text="${((NewObjectType)obj).amount"></span> Thanks. ...
7
votes
1answer
74 views

Reflectively checking whether a object is a valid generic argument to a method

How do you check using reflection whether a given object would be a valid parameter of a method (where the parameter and the object are generic types)? To get a bit of background, this is what I'm ...
0
votes
1answer
37 views

Typesafe Swing events—“The outer reference in this type test cannot be checked at run time”

I am implementing a Swing component and I want to overcome the #### untypedness of Reactor. So I thought this would work: trait Foo[A] extends scala.swing.Publisher { final case class Bar(parent: ...
8
votes
1answer
135 views

Difference between Class<?> and Class<Object> in Java [duplicate]

What is the difference between Class<?> and Class<Object> in Java? AFAIK Java Erasure changes <?> to it's upper bound, which in this case would be Object anyway. So what is this for? ...
5
votes
4answers
73 views

Duplicate Method while Method-Overloading

Following code gives compilation error with error "Duplicate Method" static int test(int i){ return 1; } static String test(int i){ return "abc"; } This is expected as both the ...
0
votes
1answer
73 views

Scala type safety and type erasure related issue

Lets say I want to construct a list of records, where each record consists of some x number of fields. However, the number of fields and type of the fields are not known at compile time. Only at ...
2
votes
1answer
112 views

Scala: cross (cartesian) product with multiple sources and heterogeneous types

I'm trying to construct multiple cross products of traversables of different (but each homogeneous) types. The desired return type is a traversable of a tuple with the type matching the types in the ...
0
votes
0answers
31 views

groovy generics: calling method on super class. Type erasure

I cannot understand why the following Groovy code won't compile @groovy.transform.CompileStatic class GenericTest<T extends String> extends TreeSet<T> { public boolean add2(T key) { ...
1
vote
3answers
103 views

How to pattern match on generic type in Scala?

Let's suppose we have a generic class Container: case class Container[+A](value: A) We then want to pattern match a Container with a Double and a Container of Any: val double = Container(3.3) ...
2
votes
1answer
58 views

javap and generics' type erasure

I am reading Herbert Schilds about type erasure in generics in java. Supposedly running javap on a class should give me the bytecode information about public, package protected and protected fields ...
2
votes
4answers
171 views

Java Generic Type Inference Strange Behavior?

Can someone explain this behaviour to me: Note: That T is never used in SomeThingGeneric public static class SomeThingGeneric<T> { public List<String> getSomeList() { ...
11
votes
3answers
132 views

Invoking Java Generic Methods

I am studying Java generic feature and I am not sure how to explain the thrid line in the following main method: public class Example4 { public static void main(final String[] args) { ...
0
votes
1answer
74 views

Singly linked list - Cannot make a static reference to the non-static type

I am working a singly linked list to learn Java. I have a working linked list but it binds to integer type, now I am trying to implement a generic typed linked list by changing all the integer ...
0
votes
2answers
92 views

Call Java method with alternatives from Scala

I am trying to use the put method of the ContentValues class in the Android API from Scala, but I can't figure out a way to make Scala narrow down the type of list elements. For example : val a: ...
0
votes
1answer
130 views

How do I declare a variable of a generic type without knowing the type arguments?

How do I define a generic TList type so that I can declare a variable of that type and then assign any specialization of TList<> to it? I want to declare this variable: var ...
-3
votes
2answers
64 views

Create generic List

How I can create genric List in Java? I also can pass Class<T> instance to the method. Like this: public static <T> List<T> createList(Class<T> clazz) { List<T> ...
0
votes
2answers
145 views

Is it a good idea to use boost::any? [closed]

I'm developing a few image-processing algorithms in C++. To make my code more generalized and to be able to configure everything without recompiling the whole project I've came up with an idea to ...
0
votes
2answers
51 views

Loosing List type on abstract class implementing generic interface

I'm having some trouble understanding the following scenario. I have a "generified" interface that is implemented by an abstract class and a concrete class that extends the abstract class. The ...
1
vote
1answer
98 views

Checking if a partial function in scala is definied for a value with unknow type

I have the following trait (to get kind of rank 2 polymorphism click) type Id[A] = A trait ~>[F[_], G[_]] { def apply[A](a: F[A]): G[A] def isDefinedAt[A](a: A): Boolean} And a function to ...
5
votes
2answers
156 views

Why to use boost any_range?

What are the benefits of using boost::any_range? Here is an example: typedef boost::any_range< int , boost::forward_traversal_tag , int , std::ptrdiff_t > integer_range; void ...
2
votes
1answer
67 views

Type erasure for binary operations

It is possible to write a wrapper that takes any type that supports a certain operation, e.g. #include <iostream> class Houdini { struct I_Houdini_Impl { virtual void foo_impl(int x) ...
1
vote
5answers
135 views

How to get the class of type variable in Java Generics

I've seen similar questions but they didnt help very much. For instance I've got this Generic Class: public class ContainerTest<T> { public void doSomething() { //I want here ...
4
votes
1answer
123 views

Putting stuff in Map<?,?> or converting Map<String,String> to Map<?,?>

I'm unhappily dealing with an interface someone defined with the following public Map<?, ?> getMap(String key); I'm trying to write unit tests that consume this interface. ...
-1
votes
3answers
60 views

Why can't one add an Object to List<? super Number>? [duplicate]

Consider the following Java code: List<? super Number> list = new ArrayList<>(); Number n = new Integer(1); Object o = new Object(); list.add(n); // works, apparently Number super Number ...
0
votes
1answer
56 views

In Scala, member of a class is not found when its instance is accessed from a list [Class]

I have a feeling that the problem I am facing has something to do with Type Erasure of Scala, but as a newbie I can't put my fingers on it. Need some help here. First, the code: class C (val i: ...
0
votes
0answers
200 views

Getting a type and class tag / binding a parameterized type in the interpreter

Given a parameterized type: trait Document[S] I want to bind an instance of this for an embedded interpreter, e.g. def test[S](doc: Document[S]) = tools.nsc.interpreter.NamedParam("document", doc) ...
2
votes
1answer
72 views

Casting “hollow” higher kinded type values to avoid instantiations

I caught myself watching a bit of the Scalawags#2 recording, and then there came this part about type erasure and Dick Wall pointing out that reflection will eventually bite you in the feet. So I was ...
5
votes
4answers
197 views

Scala: arrays and type erasure

I'd like to write overloaded functions as follows: case class A[T](t: T) def f[T](t: T) = println("normal type") def f[T](a: A[T]) = println("A type") And the result is as I expected: ...
1
vote
1answer
91 views

How deep should be the copy (assignment) of a type-erased map

I am writing a library in C++ for which I implemented a map wrapper with type erasure. The wrapper is structured as in this wonderful article: http://www.cplusplus.com/forum/articles/18756/. TLDR: ...
12
votes
4answers
177 views

Why is the “virtuality” of methods implicitly propagated in C++?

What is the reason for removing the ability to stop the propagation of methods virtuality? Let me be clearer: In C++, whether you write "virtual void foo()" or "void foo()" in the derived class, it ...
4
votes
1answer
90 views

java erasures of derived generic type

I'm coming in with a problem I'm getting trying to implement a "two-level" casting. Below is the simplified code to show what I am trying to do : public class Array2D<T> { private T[][] ...
3
votes
5answers
198 views

Constructor with generic class is undefined

I'm stuck with a stupid problem I do not understand. class Foo<T extends Collection<E>, E> { private Class<T> collectionClass; private Class<E> elementClass; public ...
3
votes
3answers
239 views

using RTTI in c++ to cast an object to the correct type

I'm trying to figure out a way to dynamically cast an instance of a child class to its parent in a somewhat difficult set of conditions. Specifically, I have a an object hierarchy that looks ...
3
votes
1answer
53 views

Java: Unwanted type erasure in inner class of parameteric implementation

Ok, so I have a parametric interface whose implementation has an inner class. It seems I cannot in any way reference the full (generic) type of the inner class, since it is not itself parameterized ...
0
votes
1answer
70 views

Multiple bounds on type with method invocation conversion

Consider this small test class: import java.util.List; public abstract class Test { // CAN modify this constructor interface public <T extends Runnable & Comparable<T>> ...
3
votes
5answers
710 views

Java:How to override this generic method?

public <S extends T> List<S> save(Iterable<S> entities) { //... } If I use following method to override @Override public List<MyType> save(Iterable<MyType> ...
3
votes
3answers
246 views

Type erasure: Java vs C# [duplicate]

Possible Duplicate: C# vs Java generics Java use Type erasure while C# keep type information at runtime, what are the practical difference in the behaviors of the language from this design? ...
3
votes
3answers
76 views

Capture generic type in Java

If I have something like: class Test<T extends X> { public T test() { T t = /* ... */; return t; } } How can I capture T's class so I can instantiate it? Are there ...
3
votes
1answer
262 views

Scala's Stream erasure warning

Could someone explain why this gives an erasure warning? def optionStreamHead(x: Any) = x match { case head #:: _ => Some(head) case _ => None } Gives: warning: non variable ...
2
votes
1answer
151 views

How do I use pattern matching with parametrized traits?

I have trouble with Scala traits and type erasure. I have this trait: trait Meta[T] { def ~=(e: T): Boolean } Now I want to use pattern matching to check for this case: (m,i) match { case ...
6
votes
1answer
94 views

What's Scala's OptManifest and NoManifest for?

I'm learning Scala's concept of manifests and I have a basic understanding how to use it in some simple cases. What puzzles me is what's OptNanifest and NoManifest for? I've never seen then used. Can ...
5
votes
3answers
92 views

Scala: Overload (Seq[T]) and (T*)

I have a case class, taking a Seq[T] as parameter: case class MyClass(value: Seq[T]) I now want to be able to write MyClass(t1,t2,t3) So I defined object MyClass { def apply(value: T*) = ...
11
votes
2answers
465 views

Does haskell erase types?

Does Haskell erase types, and if so, in what ways is this similar/dissimilar to the type erasure that occurs in Java?
3
votes
1answer
517 views

Runtime resolution of type arguments using scala 2.10 reflection

Given a type declaration, I am able to resolve the type argument. scala> reflect.runtime.universe.typeOf[List[Int]] match {case x:TypeRef => x.args} res10: List[reflect.runtime.universe.Type] = ...
3
votes
1answer
120 views

How do I ensure a Java Object is of type Map<String, Object>

Short, at-a-glance summary of question (TLDR): how do I ensure a Java Object is of type Map<String, Object>? I have a YAML document as a String. I create the YAML using SnakeYAML from a ...
5
votes
3answers
306 views

Scala pattern matching and type inference

Could someone explain why the following code compiles? Option("foo") match { case x: List[String] => println("A") case _ => println("B") } This gives me an (expected) warning about type ...
-3
votes
3answers
104 views

Type Erasure in Generics

What does the following code look at runtime after type erasure: public class Test<T> { T lst; List<T> list1; void meth() throws InstantiationException, IllegalAccessException{ T ...
1
vote
1answer
83 views

Overloading with different evidence parameters under type erasure

Given type erasure, what is the most efficient and elegant way to solve the following overloading definition: trait Signal trait Step[T] { def ar( implicit ev: T <:< Boolean ) : Signal ...
4
votes
3answers
138 views

Passing a generic Class<T> as an argument

I need to pass a Class as an argument, but I only have the generic type T. How can I infer the generic Class and pass it to fromJson() ? public class Deserializer<T> implements ...
0
votes
1answer
127 views

Scala - type erasure? [duplicate]

Possible Duplicate: How do I get around type erasure on Scala? Or, why can't I get the type parameter of my collections? I ran the following code: scala> var s = new Stack()push(1) ...

1 2 3 4