SlideShare a Scribd company logo
Ankit Kumar @ Gojek
Extension Functions In Kotlin
What Is Extension Function?
Function In Koltin
val list = listOf(1, 2, 3)
println(joinToString(list, "; ", "(", ")"))
//Output
(1; 2; 3)
What’s Better In Kotlin?
Name Arguments In Koltin
joinToString(collection, separator = " ", prefix = " ", postfix = ".")
Default Arguments In Koltin
Name Arguments In Java
Use @JvmOverloads In joinToString
Lots Of Static Utility Classes In Java
Let’s Put Function In Join.kt
Java Class Generation
@file:JvmName("StringFunctions")
Extension Functions
Extension Function
Extension Function
println("Kotlin".lastChar())
Output>>
n
Extension Function
● Create member like functions
Extension Function
● Create member like functions
● create Function 3rd Party Codebase
Extension Function
● Create member like functions
● create Function 3rd Party Codebase
● Extent To Any JVM Language (Java Class)
Extension Function
● Create member like functions
● create Function 3rd Party Codebase
● Extent To Any JVM Language (Java Class)
● Can’t Access Private or protected members of base class
Extension Function
● Create member like functions
● create Function 3rd Party Codebase
● Extent To Any JVM Language (Java Class)
● Can’t Access Private or protected members of base class
● Can call the function on nullable object
Extension Function
● Create member like functions
● create Function 3rd Party Codebase
● Extent To Any JVM Language (Java Class)
● Can’t Access Private or protected members of base class
● Can call the function on nullable object
● Can create extension function on final class
Import Extension Function
Import Extension Function
Import Extension Function
Extensions are resolved statically
ThankYou!!
Reference:
● Kotlin Official Website https://kotlinlang.org/
● https://developer.android.com/training/kotlinplayground
● http://www.kotlinweekly.net/
● https://github.com/JetBrains/kotlin
● https://kotlinlang.org/docs/extensions.html

More Related Content

PDF
Introduction to Kotlin - Android KTX
PPTX
Kotlin For Android - Functions (part 3 of 7)
PPTX
Introduction to Kotlin
PDF
Fun with Kotlin
PDF
Intro to Kotlin
PDF
Little Helpers for Android Development with Kotlin
PDF
Kotlin a problem solver - gdd extended pune
PPTX
Kotlin as a Better Java
Introduction to Kotlin - Android KTX
Kotlin For Android - Functions (part 3 of 7)
Introduction to Kotlin
Fun with Kotlin
Intro to Kotlin
Little Helpers for Android Development with Kotlin
Kotlin a problem solver - gdd extended pune
Kotlin as a Better Java

Similar to Extension Functions In Kotlin.pptx (6)

PDF
Exploring Kotlin
PPTX
Flexible Types in Kotlin - JVMLS 2015
PDF
Basics of kotlin ASJ
PDF
Kotlin what_you_need_to_know-converted event 4 with nigerians
PDF
Kotlin intro
PDF
Privet Kotlin (Windy City DevFest)
Exploring Kotlin
Flexible Types in Kotlin - JVMLS 2015
Basics of kotlin ASJ
Kotlin what_you_need_to_know-converted event 4 with nigerians
Kotlin intro
Privet Kotlin (Windy City DevFest)
Ad

Recently uploaded (20)

PDF
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
PDF
86236642-Electric-Loco-Shed.pdf jfkduklg
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Exploratory_Data_Analysis_Fundamentals.pdf
PPTX
Current and future trends in Computer Vision.pptx
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PDF
Abrasive, erosive and cavitation wear.pdf
PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
PPTX
Fundamentals of Mechanical Engineering.pptx
PPT
Occupational Health and Safety Management System
PDF
Visual Aids for Exploratory Data Analysis.pdf
PPTX
Information Storage and Retrieval Techniques Unit III
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
CURRICULAM DESIGN engineering FOR CSE 2025.pptx
PDF
Soil Improvement Techniques Note - Rabbi
PPT
introduction to datamining and warehousing
PPTX
introduction to high performance computing
PDF
PPT on Performance Review to get promotions
PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
86236642-Electric-Loco-Shed.pdf jfkduklg
R24 SURVEYING LAB MANUAL for civil enggi
Exploratory_Data_Analysis_Fundamentals.pdf
Current and future trends in Computer Vision.pptx
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
Abrasive, erosive and cavitation wear.pdf
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
Fundamentals of Mechanical Engineering.pptx
Occupational Health and Safety Management System
Visual Aids for Exploratory Data Analysis.pdf
Information Storage and Retrieval Techniques Unit III
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
CURRICULAM DESIGN engineering FOR CSE 2025.pptx
Soil Improvement Techniques Note - Rabbi
introduction to datamining and warehousing
introduction to high performance computing
PPT on Performance Review to get promotions
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
Ad

Extension Functions In Kotlin.pptx