Scala structural types with generics
In Scala, if you want to use structural types with a generic class, you must cast the instance to the structural type and import reflective calls.
Because we have to cast the instance to another type, it is better to define the type alias in a companion object.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import ExampleTest.CanAddElement
import scala.language.reflectiveCalls
import org.scalatest.{FlatSpec, Matchers}
object ExampleTest {
type CanAddElement = {def add(s: Any): Boolean}
}
class ExampleTest extends FlatSpec with Matchers {
it should "add an element to the container" in {
def add[T](container: CanAddElement)(element: T): Unit = {
container.add(element)
}
val set = new java.util.HashSet[String]()
add(set.asInstanceOf[CanAddElement])("3")
set.contains("3") shouldEqual true
val list = new java.util.LinkedList[String]()
add(list.asInstanceOf[CanAddElement])("3")
list.contains("3") shouldEqual true
}
}
You may also like
Remember to share on social media! If you like this text, please share it on Facebook/Twitter/LinkedIn/Reddit or other social media.
If you want to contact me, send me a message on LinkedIn or Twitter.
Would you like to have a call and talk? Please schedule a meeting using this link.