Keep the JVM – Ditch Java

Post on 17-Mar-2018

93 views 0 download

transcript

Copyright © 2017 Russel Winder 1

Keep the JVM – Ditch Java

Russel Winder

@russel_winderrussel@winder.org.uk

https://www.russel.org.uk

Copyright © 2017 Russel Winder 2

Java is stagnant,thankfully we have Kotlin, Ceylon,…

Russel Winder

@russel_winderrussel@winder.org.uk

https://www.russel.org.uk

Copyright © 2017 Russel Winder 3

Keep the JVM – Ditch Java

Russel Winder

@russel_winderrussel@winder.org.uk

https://www.russel.org.uk

Copyright © 2017 Russel Winder 4

The “Prosecution” Advocate● Ex theoretical physicist● Ex UNIX systems programmer● Ex academic:

– Parallel programming– Software development and programming– HCI, UI, UX

● Ex Company director

● Ex Independent consultant● Ex analyst● Ex author● Ex expert witness● Ex trainer

Russel Winder

Copyright © 2017 Russel Winder 5

The “Defence” Advocate

Appears to be missing. :-)

The audience will have to substitute.

Copyright © 2017 Russel Winder 6

The Jury

That’s you the audience.

Copyright © 2017 Russel Winder 7

Preface

Copyright © 2017 Russel Winder 8

An outline case presented,much, much more detail is available.

Copyright © 2017 Russel Winder 9

Introduction

Copyright © 2017 Russel Winder 10

Java is…● …an “old” programming language steeped in “imperative” and

“object oriented” history.● …a programming language, evolving very slowly.● …not really keeping up with modern programming ideas and

techniques.

Copyright © 2017 Russel Winder 11

The Java Platform is…● …a mature and extensive hardware-independent platform.● …evolving very, very slowly.● …a platform for many programming languages:

– Java, Scala, Kotlin, Ceylon, Frege, Groovy, Fantom, Gosu, …– Groovy, Clojure, JRuby, Jython, Golo, …

Copyright © 2017 Russel Winder 12

Some Philosophy

Copyright © 2017 Russel Winder 13

Is Change Good?

Copyright © 2017 Russel Winder 14

Is Change Good?● Change threatens backward compatibility, backward

compatibility is determined to be sacrosanct, ergo no.● Change enables new knowledge, new techniques, new tools,

ergo yes.

Copyright © 2017 Russel Winder 15

Assembly languages

Procedural languages

Functional languages

Object-oriented languages

?Logic languages

Machine code

Copyright © 2017 Russel Winder 16

Backward compatibility is theenemy of progress.

Copyright © 2017 Russel Winder 17

Backward compatibility is theexcuse of the lazy to avoid work.

Copyright © 2017 Russel Winder 18

Backward compatibility is theway applications become

outdated and broken.

Copyright © 2017 Russel Winder 19

Is backward compatibility thebiggest threat to Java?

Copyright © 2017 Russel Winder 20

Moving On

Copyright © 2017 Russel Winder 21

Distinguish Java the language fromJVM and Java Platform.

Copyright © 2017 Russel Winder 22

If Java will not change…

Copyright © 2017 Russel Winder 23

Assembly languages

Procedural languages

Functional languages

Object-oriented languages

?Logic languages

Machine code

Copyright © 2017 Russel Winder 24

Scala, touted as a replacement for Java,incorporates functional programming into an

object oriented language.

However…

Copyright © 2017 Russel Winder 25

Many took to Scala, butmany found it unsatisfactory.

Kotlin and Ceylon are two of the results.

Copyright © 2017 Russel Winder 26

The Two Languages● Kotlin

– Interwork with Java allowing incremental change of codebase.

– Influenced by Java, Groovy, Scala.

– Superior type system to Java.

● Ceylon– Replace Java but use the

Java Platform.– Module based from the

outset.– Far superior type system to

Java.

Copyright © 2017 Russel Winder 27

Both Kotlin and CeylonCan compile to JVM or JavaScript.

Copyright © 2017 Russel Winder 28

Both Kotlin and Ceylon arelanguages of the 2010s.

Copyright © 2017 Russel Winder 29

Hello World has to be done

Copyright © 2017 Russel Winder 30

/** * The Hello World program in Kotlin. * * @author Russel Winder */fun main(args:Array<String>) { println("Hello World.")}

"The Hello World program in Ceylon."by("Russel Winder")sharedvoid run() { print("Hello World.");}

Top level functions.

/** * The Hello World program in Java * * @author Russel Winder */public class HelloWorld_Java { public static void main(fnal String[] args) { System.out.println("Hello World."); }}

Copyright © 2017 Russel Winder 31

Doing everything with classes and packages as in Java (and Scala) seen as too restrictive.

Adding top level functions, etc. seen as right, make the compiler do the work of creating classes for the JVM.

Copyright © 2017 Russel Winder 32

Factorial is required

Copyright © 2017 Russel Winder 33

Code

Copyright © 2017 Russel Winder 34

Let’s look at anagramsOr word count

Copyright © 2017 Russel Winder 35

Code

Copyright © 2017 Russel Winder 36

Some Further Thoughts

Copyright © 2017 Russel Winder 37

Operator overloading was deemed too hard for programmers to cope with by the inventors of Java.

Most JVM languages since have put it back,one way or another.

Copyright © 2017 Russel Winder 38

Language evolution by replacement.

Copyright © 2017 Russel Winder 39

Kotlin and Ceylon represent twopossible futures on the JVM.

Copyright © 2017 Russel Winder 40

Headlines● Kotlin:

– More declarative than Java.– Less code.– Mixed language codebase.– More expressive than Java.

● Ceylon:– More declarative than Java.– Modules.– Far better type system

than Java.– More expressive than Java.

Copyright © 2017 Russel Winder 41

Both Kotlin and Ceylon run on Android.

Copyright © 2017 Russel Winder 42

Both Kotlin and Ceylon target JVM or JS.

Copyright © 2017 Russel Winder 43

A Challenge to You

Try all this in Java.

Copyright © 2017 Russel Winder 44

Keep the JVM – Ditch Java

Russel Winder

@russel_winderrussel@winder.org.uk

https://www.russel.org.uk

Copyright © 2017 Russel Winder 45

The JVM is dead,

Long live the GraalVM