Scala
What is Scala
Scala stands for scalable language and is inteded to solve the problems of Java while simultaneously being more concise. Initally designed by Martin Odersky, it was released in 2003. Scala is a statistcally typed programming language that incorporates both functional programming and object-oriented programming to increase scalability of applications. Scala is a compiler based programming language and generates byte code which can be executed on Java Virtual Machine (JVM). As a result, it interoperates nicely with existing Java code and libraries. Scala is a lazy evaluated language. Moreover Spark is developed using Scala.
The main features of Scala
- Functional programming
- Immutability
- Composing functions
- High Order functions
- Pattern Matching
- Asynchronous and parallel programming
- Dependency Injection
- Extensible language
- Scala ecosystem
- Mixing Java code with Scala
What is the difference between a var
, a val
and def
?
A var
is a variable