Is classloading would be the same between java and scala or it is handled differently in scala
1 Answer
Scala does not do anything special with class loading at all. Once Scala code is compiled to byte code it looks and behaves as if the source had been Java.
1 Comment
Daniel C. Sobral
There has been some discussion about providing backward compatibility by doing classloader tricks. So, while this is true right now, it might not hold true in the future.