Skip to content

Tag: generics

Unable to add value to a java generic list

Here’s my sample code: I think I should be able to add integer to items, but compilation fails: Anyone knows what’s wrong here? Answer Let us consider a more complete version of your example: Suppose for the sake of argument that the compiler says that is OK. And now we will create an instance and…

How rewrite Java generec’s into Kotlin?

I have java class and I need to rewrite it in kotlin. But I can’t rewrite generics into it. Java class: My Kotlin class Sign (1) I marked the my problem area by my opinion. But maybe the problem is somewhere else. Answer Kotlin’s <out FlagFilter> is not equivalent to Java’s <T exten…