Operator as and ClassCastException

487 Views Asked by At

Can I get ClassCastException when program is running using operator as, at the same time program should be compiled correctly. Maybe there is some trick with types.

For example with simple type inheritance

((Animal) -> Unit) --> ((Cat) -> Unit)
1

There are 1 best solutions below

2
On

Both (Animal) -> Unit and (Cat) -> Unit types are represented by the same class Function1<P1, R>. Casting one to another will never result in a ClassCastException since they are the same at runtime.