
The Scala Programming Language
Scalable Scala is well suited to building fast, concurrent, and distributed systems with its JVM, JavaScript and Native runtimes. Scala prioritizes interoperability, giving easy access to many …
Learn Scala | Scala Documentation
Tutorials Take you by the hand through a series of steps to create Scala applications.
Install | The Scala Programming Language
Each Scala release has its own page listing alternative installation methods. Click the button above to see the full list of Scala releases, or pick from the most recent releases below.
学习 Scala | Scala Documentation
Scala 3 中的新东西 Scala 3 中令人兴奋的新特性概览 Scala 3 全新的 Scaladoc Scaladoc 新特性重点介绍 演讲 可在线观看的关于 Scala 3 的演讲
Introduction | Tour of Scala | Scala Documentation
Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It seamlessly integrates …
All Available Versions | The Scala Programming Language
Feb 11, 2012 · All Available Versions This page contains a comprehensive archive of Scala releases.
New in Scala 3
The Language Reference gives a detailed description of the changes from Scala 2 to Scala 3. The Migration Guide provides you with all the information necessary to move from Scala 2 to Scala 3.
给 Java 工程师的 Scala 入门教学 | Scala Documentation
介绍 此教学将对 Scala 语言以及编译器做一个简易介绍。 面向的读者为具有编程经验,并且想简单了解 Scala 的人。 本文假设读者有着基本的、最好是 Java 上的面向对象知识。 第一个例 …
向 Java 开发者介绍Scala | Scala 3 — Book | Scala Documentation
Scala 是一种纯 OOP 语言,因此每个对象都是类的一个实例,而像运算符一样的符号 + 和 += 是真正的方法;这意味着您可以创建自己的运算符 除了是纯OOP语言,Scala还是纯FP语言;实 …
基础 | Scala Documentation
我们将在 后面 深入介绍类。 样例类 Scala有一种特殊的类叫做样例类(case class)。 默认情况下,样例类一般用于不可变对象,并且可作值比较。 你可以使用 case class 关键字来定义样 …