Why Kotlin makes Java null and void

Kotlin makes Java
Null and Void
@chetbox
Who is this guy?
Why Kotlin makes Java null and void
Why Kotlin makes Java null and void
Why Kotlin makes Java null and void
Why Kotlin makes Java null and void
Why Kotlin makes Java null and void
Why Kotlin makes Java null and void
Firebase
+
Why Kotlin makes Java null and void
You can use Kotlin in production
today
fun main(args: Array<String>) {
println("Hello, world!")
}
Optional types
var name: String? = …
val name: String = …
println(name!!)
println(name.length)
@NonNull
@Nullable
Why Kotlin makes Java null and void
Classes
class Foo { }
class MyModel(
foo: Int,
val bar: Int,
private var baz: Int
)
data class LatLng(
val lat: Double,
val lng: Double
)
Java interop
class Foo {
companion object {
fun bar() { … }
}
}
// From Kotlin
Foo.bar()
// From Java
Foo.Companion.bar()
Functional programming
listOf(1 to "one", 2 to "2", null)
.filterNotNull()
.map { (a, b) -> "$a" == b }
inline fun log(f: () -> String) {
println(“${time()}: ${f()}“)
)
log(readMsg)
log { “Got value: ${readMsg()}” }
Extension functions
fun List<Location>.totalDistance() =
zipWithNext()
.fold(0f) {
total, (current, next) ->
total + current.distanceTo(next)
}
How do I convert my
Java project to Kotlin?
IntelliJ is your Sensei
Converting “var” to “val”
“when” clauses
Optional types
Idiomatic Kotlin
It looks like you’re
pasting Java code.
Shall I convert it to
Kotlin for you?
Kotlin > Java
Shorter code ✂
Null safety
Easy Java interop ↔
First-class IDE support from IntelliJ
Lot of libraries are now being written in Kotlin
Official Android examples in Java and Kotlin
Kotlin vs. Swift
func double(
_ numbers: [Int]
) -> [Int] {
return numbers.map { 2 * $0 }
}
let numbers: [Int] = 1 ... 10
print(double(numbers))
fun double(
numbers: List<Int>
) : List<Int> {
return numbers.map { 2 * it }
}
val numbers = 1 .. 10
println(double(numbers))
fun double(
numbers: List<Number>
) = numbers.map { 2 * it }
val numbers = 1 .. 10
println(double(numbers))
val numbers = 1..10
println(numbers.map { 2 * it })
Learn more
Talk: Kotlin in Production
Talk: Life is Great and Everything Will Be Ok, Kotlin is Here
Swift is like Kotlin
Christina Lee - Pinterest
Jake Wharton - Google
Kotlinlang Slack
Fragmented podcast
Talking Kotlin podcast
Questions?
Or find me on Twitter: @chetbox
1 of 41

Recommended

Taming Asynchronous Transforms with Interstellar by
Taming Asynchronous Transforms with InterstellarTaming Asynchronous Transforms with Interstellar
Taming Asynchronous Transforms with InterstellarJens Ravens
526 views33 slides
Kotlin For Android - Functions (part 3 of 7) by
Kotlin For Android - Functions (part 3 of 7)Kotlin For Android - Functions (part 3 of 7)
Kotlin For Android - Functions (part 3 of 7)Gesh Markov
140 views29 slides
Geospatial ETL with Stetl - GeoPython 2016 by
Geospatial ETL with Stetl - GeoPython 2016Geospatial ETL with Stetl - GeoPython 2016
Geospatial ETL with Stetl - GeoPython 2016Just van den Broecke
2.7K views46 slides
Stetl for INSPIRE Data Transformation by
Stetl for INSPIRE Data TransformationStetl for INSPIRE Data Transformation
Stetl for INSPIRE Data TransformationJust van den Broecke
1.6K views69 slides
Taming Rich GML with Stetl - FOSS4G 2013 Nottingham by
Taming Rich GML with Stetl - FOSS4G 2013 NottinghamTaming Rich GML with Stetl - FOSS4G 2013 Nottingham
Taming Rich GML with Stetl - FOSS4G 2013 NottinghamJust van den Broecke
2K views59 slides
Tcl2012 8.6 Changes by
Tcl2012 8.6 ChangesTcl2012 8.6 Changes
Tcl2012 8.6 Changeshobbs
1K views19 slides

More Related Content

What's hot

Hadoop + Clojure by
Hadoop + ClojureHadoop + Clojure
Hadoop + Clojureelliando dias
1.6K views21 slides
MTL Versus Free by
MTL Versus FreeMTL Versus Free
MTL Versus FreeJohn De Goes
2.2K views29 slides
All Aboard The Scala-to-PureScript Express! by
All Aboard The Scala-to-PureScript Express!All Aboard The Scala-to-PureScript Express!
All Aboard The Scala-to-PureScript Express!John De Goes
1.8K views36 slides
Hw09 Hadoop + Clojure by
Hw09   Hadoop + ClojureHw09   Hadoop + Clojure
Hw09 Hadoop + ClojureCloudera, Inc.
1.3K views21 slides
Introduction kot iin by
Introduction kot iinIntroduction kot iin
Introduction kot iinJedsada Tiwongvokul
583 views29 slides
Hey! There's OCaml in my Rust! by
Hey! There's OCaml in my Rust!Hey! There's OCaml in my Rust!
Hey! There's OCaml in my Rust!Kel Cecil
2.2K views47 slides

What's hot(20)

All Aboard The Scala-to-PureScript Express! by John De Goes
All Aboard The Scala-to-PureScript Express!All Aboard The Scala-to-PureScript Express!
All Aboard The Scala-to-PureScript Express!
John De Goes1.8K views
Hey! There's OCaml in my Rust! by Kel Cecil
Hey! There's OCaml in my Rust!Hey! There's OCaml in my Rust!
Hey! There's OCaml in my Rust!
Kel Cecil2.2K views
Python Performance 101 by Ankur Gupta
Python Performance 101Python Performance 101
Python Performance 101
Ankur Gupta3.2K views
Profiling and optimization by g3_nittala
Profiling and optimizationProfiling and optimization
Profiling and optimization
g3_nittala1.3K views
Kotlin Slides from Devoxx 2011 by Andrey Breslav
Kotlin Slides from Devoxx 2011Kotlin Slides from Devoxx 2011
Kotlin Slides from Devoxx 2011
Andrey Breslav725 views
Coding convention by Khoa Nguyen
Coding conventionCoding convention
Coding convention
Khoa Nguyen374 views
Beauty and Power of Go by Frank Müller
Beauty and Power of GoBeauty and Power of Go
Beauty and Power of Go
Frank Müller3.3K views
Making Java Groovy (JavaOne 2013) by Ken Kousen
Making Java Groovy (JavaOne 2013)Making Java Groovy (JavaOne 2013)
Making Java Groovy (JavaOne 2013)
Ken Kousen2.9K views
Introduction to functional programming using Ocaml by pramode_ce
Introduction to functional programming using OcamlIntroduction to functional programming using Ocaml
Introduction to functional programming using Ocaml
pramode_ce6K views
Столпы функционального программирования для адептов ООП, Николай Мозговой by Sigma Software
Столпы функционального программирования для адептов ООП, Николай МозговойСтолпы функционального программирования для адептов ООП, Николай Мозговой
Столпы функционального программирования для адептов ООП, Николай Мозговой
Sigma Software128 views
เมธอด ชั้น ม 6 ห้อง 2 by Pookie Pook
เมธอด ชั้น ม  6 ห้อง 2เมธอด ชั้น ม  6 ห้อง 2
เมธอด ชั้น ม 6 ห้อง 2
Pookie Pook224 views
Cocoaheads Meetup / Kateryna Trofimenko / Feature development by Badoo Development
Cocoaheads Meetup / Kateryna Trofimenko / Feature developmentCocoaheads Meetup / Kateryna Trofimenko / Feature development
Cocoaheads Meetup / Kateryna Trofimenko / Feature development
Badoo Development6.6K views

Similar to Why Kotlin makes Java null and void

2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdf by
2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdf2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdf
2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdfAndrey Breslav
297 views79 slides
Kotlin @ Devoxx 2011 by
Kotlin @ Devoxx 2011Kotlin @ Devoxx 2011
Kotlin @ Devoxx 2011Andrey Breslav
5.3K views45 slides
No excuses, switch to kotlin by
No excuses, switch to kotlinNo excuses, switch to kotlin
No excuses, switch to kotlinThijs Suijten
586 views25 slides
Kotlin 101 for Java Developers by
Kotlin 101 for Java DevelopersKotlin 101 for Java Developers
Kotlin 101 for Java DevelopersChristoph Pickl
572 views42 slides
Intro to Kotlin by
Intro to KotlinIntro to Kotlin
Intro to KotlinMagda Miu
301 views30 slides
Kotlin for Android Developers - 3 by
Kotlin for Android Developers - 3Kotlin for Android Developers - 3
Kotlin for Android Developers - 3Mohamed Nabil, MSc.
310 views132 slides

Similar to Why Kotlin makes Java null and void(20)

2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdf by Andrey Breslav
2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdf2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdf
2022 May - Shoulders of Giants - Amsterdam - Kotlin Dev Day.pdf
Andrey Breslav297 views
No excuses, switch to kotlin by Thijs Suijten
No excuses, switch to kotlinNo excuses, switch to kotlin
No excuses, switch to kotlin
Thijs Suijten586 views
Intro to Kotlin by Magda Miu
Intro to KotlinIntro to Kotlin
Intro to Kotlin
Magda Miu301 views
A quick and fast intro to Kotlin by XPeppers
A quick and fast intro to Kotlin A quick and fast intro to Kotlin
A quick and fast intro to Kotlin
XPeppers1.7K views
Kotlin – the future of android by DJ Rausch
Kotlin – the future of androidKotlin – the future of android
Kotlin – the future of android
DJ Rausch303 views
A Brief Intro to Scala by Tim Underwood
A Brief Intro to ScalaA Brief Intro to Scala
A Brief Intro to Scala
Tim Underwood23.1K views
The Kotlin Programming Language by intelliyole
The Kotlin Programming LanguageThe Kotlin Programming Language
The Kotlin Programming Language
intelliyole9.4K views
Privet Kotlin (Windy City DevFest) by Cody Engel
Privet Kotlin (Windy City DevFest)Privet Kotlin (Windy City DevFest)
Privet Kotlin (Windy City DevFest)
Cody Engel261 views
The Arrow Library in Kotlin by Garth Gilmour
The Arrow Library in KotlinThe Arrow Library in Kotlin
The Arrow Library in Kotlin
Garth Gilmour785 views
Kotlin Austin Droids April 14 2016 by DesertJames
Kotlin Austin Droids April 14 2016Kotlin Austin Droids April 14 2016
Kotlin Austin Droids April 14 2016
DesertJames148 views
Nice to meet Kotlin by Jieyi Wu
Nice to meet KotlinNice to meet Kotlin
Nice to meet Kotlin
Jieyi Wu170 views
Coding in Kotlin with Arrow NIDC 2018 by Garth Gilmour
Coding in Kotlin with Arrow NIDC 2018Coding in Kotlin with Arrow NIDC 2018
Coding in Kotlin with Arrow NIDC 2018
Garth Gilmour596 views
Kotlin, smarter development for the jvm by Arnaud Giuliani
Kotlin, smarter development for the jvmKotlin, smarter development for the jvm
Kotlin, smarter development for the jvm
Arnaud Giuliani898 views

Recently uploaded

Sprint 226 by
Sprint 226Sprint 226
Sprint 226ManageIQ
5 views18 slides
SAP FOR TYRE INDUSTRY.pdf by
SAP FOR TYRE INDUSTRY.pdfSAP FOR TYRE INDUSTRY.pdf
SAP FOR TYRE INDUSTRY.pdfVirendra Rai, PMP
24 views3 slides
Navigating container technology for enhanced security by Niklas Saari by
Navigating container technology for enhanced security by Niklas SaariNavigating container technology for enhanced security by Niklas Saari
Navigating container technology for enhanced security by Niklas SaariMetosin Oy
14 views34 slides
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs by
DSD-INT 2023 The Danube Hazardous Substances Model - KovacsDSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
DSD-INT 2023 The Danube Hazardous Substances Model - KovacsDeltares
10 views17 slides
2023-November-Schneider Electric-Meetup-BCN Admin Group.pptx by
2023-November-Schneider Electric-Meetup-BCN Admin Group.pptx2023-November-Schneider Electric-Meetup-BCN Admin Group.pptx
2023-November-Schneider Electric-Meetup-BCN Admin Group.pptxanimuscrm
15 views19 slides
Agile 101 by
Agile 101Agile 101
Agile 101John Valentino
9 views20 slides

Recently uploaded(20)

Sprint 226 by ManageIQ
Sprint 226Sprint 226
Sprint 226
ManageIQ5 views
Navigating container technology for enhanced security by Niklas Saari by Metosin Oy
Navigating container technology for enhanced security by Niklas SaariNavigating container technology for enhanced security by Niklas Saari
Navigating container technology for enhanced security by Niklas Saari
Metosin Oy14 views
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs by Deltares
DSD-INT 2023 The Danube Hazardous Substances Model - KovacsDSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
Deltares10 views
2023-November-Schneider Electric-Meetup-BCN Admin Group.pptx by animuscrm
2023-November-Schneider Electric-Meetup-BCN Admin Group.pptx2023-November-Schneider Electric-Meetup-BCN Admin Group.pptx
2023-November-Schneider Electric-Meetup-BCN Admin Group.pptx
animuscrm15 views
Airline Booking Software by SharmiMehta
Airline Booking SoftwareAirline Booking Software
Airline Booking Software
SharmiMehta6 views
Copilot Prompting Toolkit_All Resources.pdf by Riccardo Zamana
Copilot Prompting Toolkit_All Resources.pdfCopilot Prompting Toolkit_All Resources.pdf
Copilot Prompting Toolkit_All Resources.pdf
Riccardo Zamana10 views
Team Transformation Tactics for Holistic Testing and Quality (Japan Symposium... by Lisi Hocke
Team Transformation Tactics for Holistic Testing and Quality (Japan Symposium...Team Transformation Tactics for Holistic Testing and Quality (Japan Symposium...
Team Transformation Tactics for Holistic Testing and Quality (Japan Symposium...
Lisi Hocke35 views
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko... by Deltares
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...
Deltares14 views
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated... by TomHalpin9
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...
TomHalpin96 views
DSD-INT 2023 Process-based modelling of salt marsh development coupling Delft... by Deltares
DSD-INT 2023 Process-based modelling of salt marsh development coupling Delft...DSD-INT 2023 Process-based modelling of salt marsh development coupling Delft...
DSD-INT 2023 Process-based modelling of salt marsh development coupling Delft...
Deltares7 views
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI... by Marc Müller
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...
Marc Müller41 views
FOSSLight Community Day 2023-11-30 by Shane Coughlan
FOSSLight Community Day 2023-11-30FOSSLight Community Day 2023-11-30
FOSSLight Community Day 2023-11-30
Shane Coughlan5 views
tecnologia18.docx by nosi6702
tecnologia18.docxtecnologia18.docx
tecnologia18.docx
nosi67025 views
Fleet Management Software in India by Fleetable
Fleet Management Software in India Fleet Management Software in India
Fleet Management Software in India
Fleetable11 views
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with... by sparkfabrik
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...
sparkfabrik7 views
Gen Apps on Google Cloud PaLM2 and Codey APIs in Action by Márton Kodok
Gen Apps on Google Cloud PaLM2 and Codey APIs in ActionGen Apps on Google Cloud PaLM2 and Codey APIs in Action
Gen Apps on Google Cloud PaLM2 and Codey APIs in Action
Márton Kodok6 views

Why Kotlin makes Java null and void