In Java, Scala, or generally any JVM language, there is a set of packages that is imported by default. Java, for instance, automatically imports java.lang, you don\
java.lang
The default import of all classes from java.lang is specified in the Java language Specification (7.5.5)
All other classes have to be import with the import statement.