- Welcome!
- Scala absolute basics
- Object-Oriented Programming in Scala
- Functional Programming in Scala
- Pattern Matching
- Advanced Scala Features
What you'll learn
- Scala fundamentals
- Object-oriented principles in Scala
- Functional programming principles in Scala
- Managing threads
- Foundations of implicits
Description
This free course by Rock the JVM gives you a fast-track overview of what the Scala language is capable of. Learn the foundations of Scala in the time it takes to watch a movie.
"I've been living under a rock, what's Scala again?"
Scala is an object oriented and functional language that compiles to JVM bytecode, which is the same format that Java uses. That means you can
access all Java libraries and existing Java code
run Scala on billions of devices which support a JVM
Scala is used by the top companies in the world, including Apple, Adobe, Twitter, Microsoft, Uber, and many, many more. They all use Scala for high-performance critical infrastructure, data analytics and microservices, among other things.
Learning Scala gives you
a new mental model about code
higher-paid jobs - Scala positions are some of the best paid in the industry
more productivity
a LOT more fun than "traditional" languages
In this course, we will learn the fundamentals of the Scala language - we will make some analogies to existing programming languages to understand how to write essential code, how to think and approach problems, how to deal with threads and how to use some "magical" structures in the language which you cannot find (almost) anywhere else.
Get started now, it's free!
About the instructors
- 4.64 Calificación
- 131323 Estudiantes
- 15 Cursos
Daniel Ciocîrlan
Software Engineer & Best-Selling Instructor
I'm a software engineer with a passion for teaching. Big fan of Scala and the JVM.
I have a Master's Degree in Computer Science and I wrote my Bachelor and Master theses on Quantum Computation. Before starting to learn programming, I won medals at international Physics competitions.
For 8+ years, I've taught a variety of Computer Science topics to 100000+ of students at various levels. I've held Hour of Code for 7 year-olds, I've taught university students who now work at Google and Facebook, I've held live trainings for software engineering teams at Adobe and Apple, and I'm now so excited to share what I know with a wider community online.
Student feedback
Course Rating
Reviews
The essential to start programming with Scala!
Quick Beginner for Experienced developers.
Really awesome man, I gained really more knowledge in this tutorial and I get a new skill and save this one in my inventory😅.Anyways Superb man object GGM extends App{ class Daniel{ def learn(love: Int) : Unit = println(s"Thx for this tuorial $love") } class GGM1 extends Daniel{ override def learn(love: Int): Unit = println(s"Thx for this tutorial and I love $love more times") } val ggm1 = new GGM1 ggm1.learn(999) //O/P: Thx for this tutorial and I love 999 more times }