February 2018
Intermediate to advanced
552 pages
13h 46m
English
Scala stands for Scalable language. Scala is a multi-paradigm programming language built on JVM by the Lightbend (formerly known as Typesafe) team. In Scala, it is easy to write concurrent parallel, distributed, and Reactive applications in a concise, elegant, and type-safe way.
Unlike Java, Scala is a pure OOP and FP language. Java is not a pure OOP language because of the following:
Scala does not support static members. Then how do we define utility methods in Scala? We will explore those in the upcoming sections. In Scala, everything is an object only. There are no primitive types in Scala.
Both Scala and Java programming languages run on JVM:
From Java ...