Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

difference in classloading between Java and Scala

Tags:

java

scala

Is classloading would be the same between java and scala or it is handled differently in scala

like image 564
prassee Avatar asked Mar 02 '11 12:03

prassee


1 Answers

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.

like image 66
James Iry Avatar answered Oct 26 '22 06:10

James Iry