I saw that there are two methods to cast an object in Scala:
foo.asInstanceOf[Bar]
(foo: Bar)
When I tried, I found that asInstanceOf doesn’t use implicit conversion whereas the other one does.
What are the differences of behavior between these two methods? And where is it recommended to use one over the other?
foo.asInstanceOf[Bar]is a type cast, which is primarily a runtime operation. It says that the compiler should be coerced into believing thatfoois aBar. This may result in an error (aClassCastException) if and whenfoois evaluated to be something other than aBarat runtime.foo:Baris a type ascription, which is entirely a compile-time operation. This is giving the compiler assistance in understanding the meaning of your code, without forcing it to believe anything that could possibly be untrue; no runtime failures can result from the use of type ascriptions.Type ascriptions can also be used to trigger implicit conversions. For instance, you could define the following implicit conversion:
and then ensure its use like so:
Ascribing type
Intto aStringwould normally be a compile-time type error, but before giving up the compiler will search for available implicit conversions to make the problem go away. The particular implicit conversion that will be used in a given context is known at compile time.Needless to say, runtime errors are undesirable, so the extent to which you can specify things in a type-safe manner (without using
asInstanceof), the better! If you find yourself usingasInstanceOf, you should probably be usingmatchinstead.