1 / 121
文档名称:

Compiling Scala for the Java virtual machine.pdf

格式:pdf   大小:570KB   页数:121页
下载后只包含 1 个 PDF 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

Compiling Scala for the Java virtual machine.pdf

上传人:1017848967 2017/8/17 文件大小:570 KB

下载得到文件列表

Compiling Scala for the Java virtual machine.pdf

相关文档

文档介绍

文档介绍:Compiling Scala for
the Java Virtual Machine
Michel Schinz
LABORATOIRE DES MÉTHODES DE PROGRAMMATION
INSTITUT D’INFORMATIQUE FONDAMENTALE
FACULTÉ INFORMATIQUE MUNICATION
ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE
Contents
1 Introduction 7
Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Background . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
The Scala programming language . . . . . . . . . . . 8
The Java virtual machine . . . . . . . . . . . . . . . . 9
The piler . . . . . . . . . . . . . . . . . . . . 10
Inheritance graph notation . . . . . . . . . . . . . . . . . . . . 13
2 Mixins 15
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
Single inheritance . . . . . . . . . . . . . . . . . . . . . 15
Multiple inheritance . . . . . . . . . . . . . . . . . . . 15
Mixin inheritance . . . . . . . . . . . . . . . . . . . . . 16
Trait inheritance . . . . . . . . . . . . . . . . . . . . . . 16
Mixin inheritance in Scala . . . . . . . . . . . . . . . . . . . . 17
Mixin example . . . . . . . . . . . . . . . . . . . . . . 18
Encoding mixins on the JVM . . . . . . . . . . . . . . . . . . 19
Typing aspect . . . . . . . . . . . . . . . . . . . . . . . 20
Code sharing aspect . . . . . . . . . . . . . . . . . . . 20
Encoding used by scalac . . . . . . . . . . . . . . . . 22
Interfaces for types . . . . . . . . . . . . . . . . . . . . . . . . 25
The AddInterfaces phase . . . . . . . . . . . . . . . . 25
Unmixable classes . . . . . . . . . . . . . . . . . . . . 26
Subclasses of Java classes . . . . . . . . . . . . . . . . 27
Private members . . . . . . . . . . . . . . . . . . . . . 28
Inlining mixin code . . . . . . . . . . . . . . . . . . . . . . . . 29
The ExpandMixins phase . . . . . . . . . . . . . . . . 29
Mixin type parameters . .