- Learn Scala Programming
- Slava Schmidt
- 239字
- 2021-06-10 19:35:43
Summary
Scala 2.13 is a minor update of Scala with the main focus on the redesigned collection library. The few small additions to the standard library, such as automatic resource management, just accentuate this fact.
The new collection library mainly consists of two intermixed inheritance hierarchies with a similar shape. Members of the first hierarchy describe the structure of the collection and members of the second hierarchy—operations available on this collection type. Because of the inheritance relations, the collections situated lower in the tree define additional methods for more specific collections and override methods defined by the parent traits to provide more efficient implementation as required.
The three main collection types are Seq, Set, and Map. Each of these types has multiple implementations that are useful in specific situations. Set is also a function of one argument; Seq and Map are PartialFunctions.
Most of the collections are available in mutable and immutable forms.
In addition to the collection hierarchies, there is a concept of View, which is a reified definition of iterators’ operations and can be used to lazily apply transformations to the collection. Another related abstraction is IterableFactory, which implements some general ways to create collection instances and to perform conversions between collection representations.
In the next chapter, we will shift our focus from the new features of version 2.13 to a general exploration of Scala, starting with its type system.
- Python機器學習:數據分析與評分卡建模(微課版)
- JavaScript 網頁編程從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- Learning Firefox OS Application Development
- Flux Architecture
- Java應用開發技術實例教程
- Learning Apache Mahout Classification
- Java程序設計:原理與范例
- Spring+Spring MVC+MyBatis整合開發實戰
- PHP從入門到精通(第4版)(軟件開發視頻大講堂)
- Test-Driven Machine Learning
- 現代C++編程實戰:132個核心技巧示例(原書第2版)
- Illustrator CS6設計與應用任務教程
- App Inventor 2 Essentials
- CodeIgniter Web Application Blueprints
- Android Studio開發實戰:從零基礎到App上線 (移動開發叢書)