Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 

Repository files navigation

Kotlin Cheatsheet

A Kotlin cheat sheet is a quick reference guide that provides a concise summary of the most important Kotlin syntax and features. Most of the content in this cheat sheet has been collected from the official Kotlin documentation while avoiding detailed explanations. This cheat sheet is designed for quick review purposes and not for providing detailed information, so I suggest that you also read the official Kotlin documentation.

If there is any issue, please open an issue or feel free to contribute to its expansion. If you'd like to support me, please give a star to this repository.⭐

Kotlin logotype

Table of Contents

Introduction

Kotlin is a modern, open-source programming language that is used for building multi-platform applications. It is concise, expressive, and powerful, with features such as null safety, extension functions, lambdas, and many others. This cheat sheet will cover some of the essential Kotlin concepts.

First Kotlin program

This is an example of printing "Hello world" in Kotlin:

fun main() {
    println("Hello world")
}

fun main(args: Array<String>) {
    println("Hello, world")
}

Get input from user

To get input from the user in Kotlin, you can use the readLine() function. This is an example:

fun main() {
    print("Enter your name: ")
    val name = readLine()
    println("Hello, $name!")
}

Comments

// This is an end-of-line comment

/* This is a block comment
   on multiple lines. */

Block comments in Kotlin can be nested.

/* The comment starts here
/* contains a nested comment *⁠/
and ends here. */

KDoc

KDoc is the documentation format for Kotlin, similar to Javadoc for Java. KDoc is used to generate documentation for Kotlin classes, functions, and properties. KDoc comments start with the /** and end with */. This is an example:

/**
 * Calculates the sum of two integers.
 *
 * @param a The first integer to add.
 * @param b The second integer to add.
 * @return The sum of the two integers.
 */
fun sum(a: Int, b: Int): Int {
    return a + b
}

Variables

In Kotlin, variables can be declared using either the var or val keyword.

var variables are mutable, meaning their value can be changed after they are initialized.

var x = 5
x = 10

val variables, on the other hand, are immutable, meaning their value cannot be changed after they are initialized.

val y = 5
y = 10 // This will result in a compilation error

Data types

Here's a brief overview of the most commonly used data types:

    val booleanVar: Boolean = true
    val byteVar: Byte = 127
    val shortVar: Short = 32767
    val intVar: Int = 2147483647
    val longVar: Long = 9223372036854775807L
    val floatVar: Float = 3.14f
    val doubleVar: Double = 3.14159265358979323846
    val charVar: Char = 'A'
    val stringVar: String = "Hello, world!"

Sizes of Data types

Data type Bytes
Short 2
Int 4
Long 8
Float 4
Double 8
Char 2

Type Inference

Kotlin supports type inference, which means the compiler can infer the type of a variable from its initial value.

val x = 5 // The type of x is inferred to be Int
val y = "hello" // The type of y is inferred to be String

Variables in Kotlin can also be declared without an initial value, but in that case, the type must be explicitly specified:

var z: Double // Valid, z has no initial value
// println(z) // Invalid, z is not initialized and has no value yet
z = 3.14 // Valid, z is initialized with a value

Type Conversion

Kotlin provides several methods for converting between data types. Here's an example in Kotlin that demonstrates various methods of type conversion.

    val str: String = "123"
    val num: Int = str.toInt() // Convert String to Int

    val dbl: Double = 123.45
    val int: Int = dbl.toInt() // Convert Double to Int

    val lng: Long = 9876543210
    val flt: Float = lng.toFloat() // Convert Long to Float

    val bol: Boolean = true
    val strBol: String = bol.toString() // Convert Boolean to String

    val char: Char = 'A'
    val intChar: Int = char.toInt() // Convert Char to Int // Conversion of Char to Number is deprecated. Use Char.code property instead.

    val byte: Byte = 127
    val short: Short = byte.toShort() // Convert Byte to Short

String templates

val name= "Ali"
val result= "My name is $name" 

Multiline strings

val speech = """Four score and
               |seven years ago
               |our fathers ...""".trimMargin()

Character escape

\n insert new line
\t inserts a tab
\r inserts carriage return

Operators

Arithmetic operators

  val a = 10
  val b = 5
  println(a + b) // 15
  println(a - b) // 5
  println(a * b) // 50
  println(a / b) // 2
  println(a % b) // 0

Comparison operators

  val c = 10
  val d = 5
  println(c > d) // true
  println(c >= d) // true
  println(c < d) // false
  println(c <= d) // false
  println(c == d) // false
  println(c != d) // true

Assignment operators

 var h = 10
 h += 5
 println(h) // 15
 h -= 5
 println(h) // 10
 h *= 2
 println(h) // 20
 h /= 4
 println(h) // 5
 h %= 3
 println(h) // 1

Logical operators

  val i = true
  val j = false
  println(i && j) // false
  println(i || j) // true
  println(!i) // false

Bitwise operators

  val k = 0b1010
  val l = 0b1100
  println(k and l) // Prints "8" (0b1000)
  println(k or l) // Prints "14" (0b1110)
  println(k xor l) // Prints "6" (0b0110)

Range operator

  val o = 1..10
  println(o.contains(5)) // Prints "true"
  println(o.contains(11)) // Prints "false"

Control flow

If-else

if (condition) {
    // Code to execute if condition is true
} else {
    // Code to execute if condition is false
}

When

when (value) {
    condition1 -> // Code to execute if value matches condition1
    condition2 -> // Code to execute if value matches condition2
    else -> // Code to execute if value does not match any condition
}

Conditional Expression

Given if and when are expressions, we can directly assign them to variables.

val seasonFirstMonth = when(season) {
    "summer" -> 6
    "winter" -> 12
    "automn" -> 9
    "spring" -> 3
    else -> error("There is only 4 seasons")
}

When allows multiple branch conditions:

when (i) {
    1,2,3 -> println("got a 1, 2, or 3")
    4,5,6 -> println("got a 4, 5, or 6")
    else  -> println("something else")
}

When against ranges:

val i = 1

when (i) {
    in 1..3  -> println("1, 2, or 3")
    !in 4..5 -> println("not a 4 or 5")
    else     -> println("something else")
}

// result: 1, 2, or 3

When with in and listOf():

val i = 1
when (i) {
    in listOf(1,3,5) -> println("a little odd")
    in listOf(2,4,6) -> println("a little even")
    else             -> println("something else")
}

When with expressions as branch conditions:

val x: Any = 11.0

when (x) {
    is Boolean -> println("$x is a Boolean")
    is Double  -> println("$x is a Double")
    is String  -> println("$x is a String")
    !is String -> println("$x is not a String")
    else       -> println("$x is something else")
}

This syntax is useful for using when as the body of a function:

fun intToString(i: Int): String = when {
    i < 0  -> "a negative number!"
    i == 0 -> "0"
    else   -> "a positive number!"
}

Thus, it allows a similar ternary operator using a regular if.

val max = if (a > b) a else b         

For loop

for (item in collection) {
    // Code to execute for each item in collection
}

//For maps:
for ((name,rating) in ratings) println("Movie: $name, Rating: $rating")

Ranges

There is a set of tools for defining ranges in Kotlin.

for(i in 0..3) {             
    print(i)
}

for(i in 0 until 3) {       
    print(i)
}

for(i in 2..8 step 2) {     
    print(i)
}

for (i in 3 downTo 0) {     
    print(i)
}

Char ranges are also supported.

for (c in 'a'..'d') {   
    print(c)
}

Ranges are also useful in if statements.

if (x in 1..5) {           
    print("x is in range from 1 to 5")
}

While

while (condition) {
    // Code to execute as long as condition is true
}

Do While

do {
    // Code to execute at least once
} while (condition)

Break and Continue

for (i in 1..10) {
    if (i == 5) {
        break // Exit loop when i is equal to 5
    }
    if (i % 2 == 0) {
        continue // Skip even numbers and continue to the next iteration
    }
    // Code to execute for each odd number between 1 and 10
}

Labelled Break And Continue

outer@ while(condition) {
      // code
      inner@ while(condition) {
            // code
            if(break condition) {
               break@outer //'break @outer' is also allowed i.e. with a space
            } 
            if(continue condition) {
               continue@outer //'continue @outer' is also allowed i.e. with a space
            } 
      }
}

Exceptions

To throw an exception object, use the throw expression:

throw Exception("Exception...")

To catch an exception, use the try...catch expression:

try {
    // some code
} catch (e: SomeException) {
    // handler
} finally {
    // optional finally block
}

The Nothing type: This type has no values and is used to mark code locations that can never be reached. In your own code, you can use Nothing to mark a function that never returns.

fun fail(message: String): Nothing {
    throw IllegalArgumentException(message)
}

Functions

Function Declaration

fun sayHello() {
    println("Hello!")
}

fun greet(name: String) {
    println("Hello, $name!")
}

Default arguments and named arguments

fun greet(name: String = "World", greeting: String = "Hello") {
  println("$greeting, $name!")
}

fun main() {
  // calling function with default arguments
  greet() // output: Hello, World!

  // calling function with named arguments
  greet(greeting = "Hi", name = "Ali") // output: Hi, Ali!

  // calling function with some named arguments
  greet(name = "Reza") // output: Hello, Reza!
}

Function Return Types

fun add(a: Int, b: Int): Int {
    return a + b
}

fun multiply(a: Int, b: Int) = a * b

fun plus1(i: Int): Int = i + 1

Unit-returning functions If a function does not return a value, its return type is Unit.

fun printHello(): Unit {
  print("Hello")
}

Or

fun printHello() {
   print("Hello")
}

Local functions

Kotlin supports local functions, which are functions inside other functions. printMessage() is a local function defined within the main() function.

fun main() {
    fun printMessage(message: String) {
        println("Message: $message")
    }

    printMessage("Hello, world!")
}

Member functions

A member function is a function that is defined inside a class or object.

class Sample {
    fun foo() {//...}
}

Generic functions

Functions can have generic parameters, which are specified using angle brackets before the function name

fun <T> function(item: T){ 
 //Code
}

Lambda Expressions

val sum = { a: Int, b: Int -> a + b }

val square: (Int) -> Int = { it * it }

//lambda functions used as class extensions:
val lambda4 : String.(Int) -> String = { this + it }

fun main(args: Array<String>) {
    val result = "Geeks".lambda4(50)
    print(result) //Geeks50
}

//Below are anonymous functions
val anonymous1 = fun(x: Int, y: Int): Int = x + y

val anonymous2 = fun(num: Int): String {
    if(num % 2 == 0 && num < 0) {
        return "Number is even and negative"
    }
}

Extension Functions and Properties

Extension Functions and Properties in Kotlin allow adding new functionality or properties to existing classes without modifying their source code.

// Extension function
fun String.reverse(): String {
    return this.reversed()
}

// Extension property
val String.firstChar: Char
    get() = this[0]
fun main() {
    val str = "Ali"
    println(str.reverse())  // Prints "ilA"
    println(str.firstChar)  // Prints "A"
}

Extension function on Any

fun Any.printMe(): Unit = println("I am ${this}")

1.printMe()
"Hello".printMe()
true.printMe()

Higher-Order Functions

A higher-order function is a function that takes another function as parameter and/or returns a function.

  • Taking Functions as Parameters
fun calculate(x: Int, y: Int, operation: (Int, Int) -> Int): Int { 
    return operation(x, y)                                         
}

fun sum(x: Int, y: Int) = x + y                                 
fun main() {
    val sumResult = calculate(1, 7, ::sum)                         
    val mulResult = calculate(1, 7) { a, b -> a * b }             
}
  • Returning Functions
fun operation(): (Int) -> Int {                                     
    return ::square
}

fun square(x: Int) = x * x                                          
fun main() {
    val func = operation()                                          
    println(func(7))                                                
}

Operator overloading

Operator overloading in Kotlin allows you to define and use custom operators for your own classes and types.

data class Point(val x: Int, val y: Int) {
    operator fun plus(other: Point): Point {
        return Point(x + other.x, y + other.y)
    }
}
fun main() {
    val p1 = Point(1, 2)
    val p2 = Point(3, 4)
    val p3 = p1 + p2 // using the overloaded '+' operator
    println(p3) // Output: Point(x=4, y=6)
}

Infix notation

Infix in Kotlin allows you to define functions that can be called using infix notation (i.e., without using parentheses and the dot notation).

infix fun Int.times(str: String) = str.repeat(this)

fun main() {
    val str = 5 times "Hello "
    println(str) // Output: "Hello Hello Hello Hello Hello "
}

infix fun Int.plus(that: Int) = this + that

1 plus 1 //Outputs 2

Vararg Parameters

Key points:

  • Declare function parameters with the vararg keyword
  • When arrays are passed in, handle them with the * character
  • Note: “In Kotlin, a vararg parameter of type T is internally represented as an array of type T (Array) inside the function body.”
fun printAll(vararg ints: Int) {
    for (i in ints) print(i)
}

printAll(1,2,3) //Prints 1 2 3

Passing in an array:

val arr = intArrayOf(1,2,3)

printAll(arr)
//error: type mismatch: inferred type is Array<Int> but Int was expected printAll(arr)

printAll(*arr) //works

Scope Functions

  • let

let can be used for scoping and null-checks. When called on an object, let executes the given block of code and returns the result of its last expression. The object is accessible inside the block by the reference it (by default) or a custom name.

val message: String? = "Hello"
message?.let {
    print(it.toUpperCase()) // Output: "HELLO"
}
  • run

Like let, run is another scoping function from the standard library. Basically, it does the same: executes a code block and returns its result. The difference is that inside run the object is accessed by this. This is useful when you want to call the object's methods rather than pass it as an argument.

val message: String? = "Hello"
message?.run {
    print(this.toUpperCase()) // Output: "HELLO"
}
  • with

with is a non-extension function that can access members of its argument concisely: you can omit the instance name when referring to its members.

val person = Person("Ali", 24)
val message = with(person) {
    "My name is $name and I'm $age years old."
}
  • apply

apply executes a block of code on an object and returns the object itself. Inside the block, the object is referenced by this. This function is handy for initializing objects.

val person = Person("Ali", 24)
person.apply {
    name = "Ali"
    age = 24
}
  • also

also works like apply: it executes a given block and returns the object called. Inside the block, the object is referenced by it, so it's easier to pass it as an argument. This function is handy for embedding additional actions, such as logging in call chains.

val message: String? = "Hello"
message?.also {
    print(it.toUpperCase()) // Output: "HELLO"
}

Collections

String

String properties:

Property Description
length: Int It returns the length of string sequence.
indices: IntRange It returns the ranges of valid character indices from current char sequence.
lastIndex: Int It returns the index of last character from char sequence.

String methods/functions:

Functions Description
compareTo(other: String): Int It compares the current object with specified object for order. It returns zero if current is equals to specified other object.
get(index: Int): Char It returns the character at given index from the current character sequence.
plus(other: Any?): String It returns the concatenate string with the string representation of the given other string.
subSequence(startIndex: Int,endIndex: Int): CharSequence It returns the new character sequence from current character sequence, starting from startIndex to endIndex.
CharSequence.contains(other: CharSequence, ignoreCase: Boolean = false):Boolean It returns true if the character sequence contains the other specified character sequence.
CharSequence.count(): Int It returns the length of char sequence.
String.drop(n: Int): String It returns a string after removing the first n character.
String.dropLast(n: Int): String It returns a string after removing the last n character.
String.dropWhile(predicate: (Char) -> Boolean): String It returns a character sequence which contains all the characters, except first characters which satisfy the given predicate.
CharSequence.elementAt(index: Int): Char It returns a character at the given index or throws an IndexOutOfBoundsException if the index does not exist in character sequence.
CharSequence.indexOf(char: Char, startIndex: Int = 0,ignoreCase: Boolean = false): Int It returns the index of first occurrence of the given character, starting from the given index value.
CharSequence.indexOfFirst(predicate: (Char) -> Boolean): Int It returns the index of first character which match the given predicate, or -1 if the character sequence not contains any such character.
CharSequence.indexOfLast(predicate: (Char) -> Boolean): Int It returns the index of last character which match the given predicate, or -1 if the character sequence not contains any such character.
CharSequence.getOrElse(index: Int, defaultValue: (Int) ->Char): Char It returns the character at specified index or the result of calling the defaultValue function if the index is out of bound of current character sequence.
CharSequence.getOrNull(index: Int): Char? It returns a character at the given index or returns null if the index is out of bound from character sequence.

Array

An array is a fixed-size collection of elements of the same data type.

  • Declaring and Initializing Arrays
// Declare an array of integers
val numbers = arrayOf(1, 2, 3, 4, 5)
val x: Array<Int> = arrayOf(1,2,3)
val c: IntArray = intArrayOf(1,2,3) // Note: arrayOf(1,2,3) and intArrayOf(1,2,3) are not the same:

// Declare an array of strings
val names = arrayOf("Alice", "Bob", "Charlie", "Dave")

// Declare an array of a specific size
val array = arrayOfNulls<Int>(10)

// Declare an array of integers with a specified size and initial value
val array = Array<Int>(7) { i -> i*i }
val filledArray = IntArray(5) { index -> index * 2 } // Other type: BooleanArray, ShortArray, DoubleArray and etc.
  • Accessing Array Elements
// Access an element at a specific index
val firstNumber = numbers[0]

// Access the last element of an array
val lastNumber = numbers[numbers.size - 1]
  • Modifying Array Elements
// Modify an element at a specific index
numbers[0] = 10

// Fill an array with a specific value
Arrays.fill(numbers, 0)
  • Iterating over Arrays
// Iterate over an array using a for loop
for (number in numbers) {
    println(number)
}

// Iterate over an array using a for loop with an index
for (i in names.indices) {
    println("${i}: ${names[i]}")
}

for ((index, value) in array.withIndex()) {
    println("the element at $index is $value")
}

// Iterate over an array using a forEach loop
names.forEach { name ->
    println(name)
}

collection.forEachIndexed { index, element ->
    // ...
}

  • Basic methods
val index = numbers.indexOf(3)

numbers.sort()

names.reverse()

println(names.size)

List

  • A collection of elements in a specified order
  • Can have duplicates
  • Immutable: listOf(), or mutable: mutableListOf()
  • List: This is the basic interface for a read-only list of elements.
  • MutableList: This is a subinterface of List that allows for mutable operations such as adding or removing elements.
  • ArrayList: This is an implementation of MutableList that uses an array to store elements.
  • LinkedList: This is an implementation of MutableList that uses a linked list to store elements.
val list = listOf(1, 2, 3, 4, 5)
val list4 = arrayListOf(1, 2, 3)
val list2 = mutableListOf(1, 2, 3, 4, 5)

Basic methods:

    val numbers = mutableListOf(1, 2, 3)
    numbers.add(4) // Adds the specified element to the end of the list
    numbers.remove(3) // Removes the first occurrence of the specified element from the list
    numbers[1] // Returns the element at the specified index in the list
Functions Descriptions
abstract fun contains(element: E): Boolean It checks specified element is contained in this collection.
abstract fun containsAll(elements: Collection<E>): Boolean It checks all elements specified are contained in this collection.
abstract operator fun get(index: Int): E It returns the element at given index from the list.
abstract fun indexOf(element: E): Int Returns the index of first occurrence of specified element in the list, or -1 if specified element is not present in list.
abstract fun isEmpty(): Boolean It returns the true if list is empty, otherwise false.
abstract fun iterator(): Iterator<E> It returns an iterator over the elements of this list.
abstract fun lastIndexOf(element: E): Int It returns the index of last occurrence of specified element in the list, or return -1 if specified element is not present in list.
abstract fun listIterator(): ListIterator<E> It returns a list iterator over the elements in proper sequence in current list.
abstract fun listIterator(index: Int): ListIterator<E> It returns a list iterator over the elements in proper sequence in current list, starting at specified index.
abstract fun subList(fromIndex: Int, toIndex: Int): List It returns a part of list between fromIndex (inclusive) to toIndex (exclusive).
  • mutableListOf() functions
Function Descriptions
abstract fun add(element: E): Boolean It adds the given element to the collection.
abstract fun add(index: Int, element: E) It adds the element at specified index.
abstract fun addAll(elements: Collection<E>): Boolean It adds all the elements of given collection to current collection.
abstract fun clear() It removes all the elements from this collection.
abstract fun listIterator(): MutableListIterator<E> It returns a list iterator over the elements in proper sequence in current list.
abstract fun listIterator(index: Int): MutableListIterator<E> It returns a list iterator starting from specified index over the elements in list in proper sequence.
abstract fun remove(element: E): Boolean It removes the specified element if it present in current collection.
abstract fun removeAll(elements: Collection<E>): Boolean It removes all the elements from the current list which are also present in the specified collection.
abstract fun removeAt(index: Int): E It removes element at given index from the list.
abstract fun retainAll(elements: Collection<E>): Boolean It retains all the elements within the current collection which are present in given collection.
abstract operator fun set(index: Int, element: E): E It replaces the element and add new at given index with specified element.
abstract fun subList(fromIndex: Int,toIndex: Int): MutableList<E> It returns part of list from specified fromIndex (inclusive) to toIndex (exclusive) from current list. The returned list is backed by current list, so non-structural changes in the returned list are reflected in current list, and vice-versa.
  • Kotlin ArrayList functions
Function Description
open fun add(element: E): Boolean It is used to add the specific element into the collection.
open fun add(index: Int, element: E) It is used to insert an element at specific index.
open fun addAll(elements: Collection<E>): Boolean It is used to add all the elements in the specified collection to current collection.
open fun addAll(index: Int, elements: Collection<E>): Boolean It is used to add all the elements of specified collection into the current list at the specified index.
open fun clear() It is used to removes all elements from the collection.
open fun get(index: Int): E It is used to return the element at specified index in the list.
open fun indexOf(element: E): Int It is used to return the index of first occurrence of specified element in the list or return -1 if the specified element in not present in the list.
open fun lastIndexOf(element: E): Int It is used to return the last occurrence of given element from the list or it returns -1 if the given element is not present in the list.
open fun remove(element: E): Boolean It is used to remove a single instance of the specific element from current collection, if it is available.
open fun removeAt(index: Int): E It is used to remove the specific index element from the list.
open fun removeRange(startIndex: Int, endIndex: Int) Its remove the range of elements starting from startIndex to endIndex in which endIndex is not includes.
open fun set(index: Int, element: E): E It is used to replaces the element from the specified position from current list with the specified element.
open fun toArray(): Array<Any?> It is used to return new array of type Array<Any?> with the elements of this collection.
open fun toString(): String It is used to returns a string representation of the object.
fun trimToSize() It does nothing in this ArrayList implementation.

Map

  • A collection of key-value pairs
  • Keys must be unique
  • Immutable: mapOf(), or mutable: mutableMapOf()
  • Map: This is the basic interface for a read-only map of key-value pairs.
  • MutableMap: This is a subinterface of Map that allows for mutable operations such as adding or removing key-value pairs.
  • HashMap: This is an implementation of MutableMap that uses a hash table to store key-value pairs.
  • LinkedHashMap: This is an implementation of MutableMap that maintains the insertion order of key-value pairs.
  • SortedMap: This is an interface for a map that maintains its key-value pairs in sorted order.
  • TreeMap: This is an implementation of SortedMap.
val map = mapOf(1 to "one", 2 to "two", 3 to "three")
val map2= mutableListOf(1 to "one", 2 to "two", 3 to "three")

for ((k,v) in map) {
     println("value of $k is $v")
}

Basic methods:

    val numbers =  mutableMapOf("one" to 1, "two" to 2, "three" to 3)
    numbers.put("four", 4) // Associates the specified value with the specified key in the map
    numbers.remove("two") // Removes the mapping for the specified key from the map if it is present
    numbers.containsKey("two") // Returns true if the map contains the specified key
  • mutableMapOf() properties
Properties Description
abstract val entries: MutableSet<MutableEntry<K, V>> This returns a MutableSet of all its key and value pairs in the map.
abstract val keys: MutableSet<K> This returns all the keys of MutableSet in this map.
abstract val values: MutableCollection<V> This returns all the values of MutableCollection in the current map. This collection may contain duplicate values.
  • mutableMapOf functions
Function Description
abstract fun put(key: K, value: V): V? It adds the given value with the specified key in the map.
abstract fun putAll(from: Map<out K, V>) This updates the current map with key/value pairs from the mentioned map.
abstract fun remove(key: K): V? It removes the specified key with its corresponding value from the map.
open fun remove(key: K, value: V): Boolean It removes the key and value entities from the map only if it exist in the map.
abstract fun clear() This function is used to removes all the elements from the map.
operator fun <K, V> Map<out K, V>.contains(key: K): Boolean It checks the given key in the map.
abstract fun containsKey(key: K): Boolean It returns the true if map contains the specified key.
fun <K> Map<out K, *>.containsKey(key: K): Boolean It returns the true if map contains the specified key.
abstract fun containsValue(value: V): Boolean It returns true if the map maps one or more keys for the given value.
fun <K, V> Map<K, V>.containsValue(value: V): Boolean It returns true if the map maps one or more keys for the given value.
fun <K, V> Map<out K, V>.count(): Int It returns the total number of entities of the map
operator fun <K, V> Map<out K, V>.get(key: K): V? It returns the value corresponding to mention key, or null if no such key found in the map.
fun <K, V> Map<out K, V>.getOrDefault(key: K,defaultValue: V): V It returns the value with corresponding mention key, or it returns default value if no such mapping for the key in the map.
fun <K, V> Map<K, V>.getOrElse(key: K,defaultValue: () -> V): V It returns the value for the mention key in the map, or it returns the default value function if no such entry found for the given key.
fun <K, V> Map<K, V>.getValue(key: K): V It returns the value corresponding to given key, or it throws an exception if no key found in the map.

Set

  • A collection of elements with no duplicates
  • Elements are not in a specific order
  • Immutable: setOf(), or mutable: mutableSetOf
  • Set: This is the basic interface for a read-only set of elements.
  • MutableSet: This is a subinterface of Set that allows for mutable operations such as adding or removing elements.
  • HashSet: This is an implementation of MutableSet that uses a hash table to store elements.
  • LinkedHashSet: This is an implementation of MutableSet that maintains the insertion order of elements.
  • SortedSet: This is an interface for a set that maintains its elements in sorted order.
  • TreeSet: This is an implementation of SortedSet.
val set = setOf(1, 2, 3, 4, 5)
val set2 = mutableSetOf(1, 2, 3, 4, 5)

Basic methods:

    val numbers =  mutableSetOf(1, 2, 3)
    numbers.add(4) // Adds the specified element to the set if it is not already present
    numbers.remove(3) // Removes the specified element from the set if it is present
    numbers.contains(1) //  Returns true if the set contains the specified element

Please for more collections and detaile read doc.

Collections functions

  • Remove duplicates
// Maintain the original order of items
val devs = arrayOf("Amit", "Ali", "Amit", "Sumit", "Sumit", "Himanshu")
print(devs.distinct()) // [Amit, Ali, Sumit, Himanshu]

// Maintain the original order of items
val devs = arrayOf("Amit", "Ali", "Amit", "Sumit", "Sumit", "Himanshu")
print(devs.toSet()) // [Amit, Ali, Sumit, Himanshu]

// Maintain the original order of items
val devs = arrayOf("Amit", "Ali", "Amit", "Sumit", "Sumit", "Himanshu")
print(devs.toMutableSet()) // [Amit, Ali, Sumit, Himanshu]

// DO NOT Maintain the original order of items
val devs = arrayOf("Amit", "Ali", "Amit", "Sumit", "Sumit", "Himanshu")
print(devs.toHashSet()) // [Amit, Ali, Sumit, Himanshu]
  • Convert array or list to string
val nums = listOf(1,2,3,4,5)

nums.joinToString()
// 1, 2, 3, 4, 5

nums.joinToString(
    separator = ", ",
    prefix = "[",
    postfix = "]",
    limit = 3,
    truncated = "there’s more ..."
)
//[1, 2, 3, there’s more ...]
  • Transform a collection into a single result
val numList = listOf(1, 2, 3, 4, 5)
val result = numList.reduce { result, item ->
    result + item
}
print(result) // 15

// NOTE: If the list is empty, then it will throw a RuntimeException

Find all elements satisfying a particular condition

val isEven: (Int) -> Boolean = { it % 2 == 0 }
val zeroToTen = 0..10
val allTrue = zeroToTen.all { isEven(it) } // false

val evens = zeroToTen.map { it * 2 }
val allTrue2 = evens.all { isEven(it) } // true

val emptyList = emptyList<Int>()
val allTrue4 = emptyList.all { false } // true as the list is empty

val numbers = listOf(1, 2, 3, 4, 5)
val hasEvenNumber = numbers.any { it % 2 == 0 }
val allEvenNumbers = numbers.all { it % 2 == 0 }
// hasEvenNumber: true
// allEvenNumbers: false
  • Find a particular element based on a certain condition
data class User(val id: Int, val name: String)

val users = arrayOf(
    User(1, "Amit"),
    User(2, "Ali"),
    User(3, "Sumit"),
    User(4, "Himanshu")
)

val userWithId3 = users.single { it.id == 3 } //single returns first element or throws Exception if more than one or no matching element
print(userWithId3) // User(id=3, name=Sumit)

val userWithId1 = users.find { it.id == 1 } //find returns first element or null if not found
print(userWithId1) // User(id=1, name=Amit)
  • Union of collections
val listOne = listOf(1, 2, 3, 3, 4, 5, 6)
val listTwo = listOf(2, 2, 4, 5, 6, 7, 8)
println(listOne.union(listTwo)) // [1, 2, 3, 4, 5, 6, 7, 8]
  • Intersection of collections
val listOne = listOf(1, 2, 3, 3, 4, 5, 6)
val listTwo = listOf(2, 2, 4, 5, 6, 7, 8)
println(listOne.intersect(listTwo)) // [2, 4, 5, 6]
  • Aggregate functions:
val numbers = listOf(1, 2, 3, 4, 5)
val squaredNumbers = numbers.map { it * it }
// squaredNumbers: [1, 4, 9, 16, 25]

val names = listOf("Alice", "Bob", "Charlie", "David")
val shortNames = names.filter { it.length <= 4 }
// shortNames: ["Bob", "David"]

val totalSum = numbers.sum()
println("Total Sum: $totalSum") // Output: Total Sum: 15

val averageValue = numbers.average()
println("Average Value: $averageValue") // Output: Average Value: 3.0

val foldedSum = numbers.fold(0) { acc, number -> acc + number }
println("Folded Sum: $foldedSum") // Output: Folded Sum: 15

val reducedSum = numbers.reduce { acc, number -> acc + number }
println("Reduced Sum: $reducedSum") // Output: Reduced Sum: 15

val maxValue = numbers.maxOrNull()
val minValue = numbers.minOrNull()
println("Max Value: $maxValue, Min Value: $minValue") // Output: Max Value: 5, Min Value: 1

val nestedList = listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6))
val flatList = nestedList.flatMap { it }
// flatList: [1, 2, 3, 4, 5, 6]

val people = listOf(Person("Alice", 25), Person("Bob", 30), Person("Charlie", 35))
val oldestPerson = people.maxBy { it.age } // similarly with minBy function
// oldestPerson: Person(name=Charlie, age=35)

Class and Object

Classes

  • A class is a blueprint for creating objects.
  • An object is an instance of a class.
class Person(val name: String, var age: Int) // class

val person = Person("Ali", 24) // object

Property and methods

  • Properties are variables that are part of a class/object.
  • Methods are functions that are part of a class/object.
class Person(val name: String) {
   var age = 0 // property

   fun sayHello() { // method
      println("Hello, my name is $name")
   }
}

val person = Person("Ali")
person.age = 24
person.sayHello()

Getters and setters

Getter and setter in Kotlin are accessors used to retrieve and modify the value of a variable, respectively. The initializer, getter, and setter are optional.

class Person {
    var name: String = ""
        get() = field.uppercase(Locale.getDefault())
        set(value) {
            field = "Name: $value"
        }

    var age = 24 // has default getter and setter

    val username="Ali" // has default getter

}

For more details about properties, getter/setter, backing fields, backing properties and etc read this link.

Visibility modifiers

  • private: restricts visibility to the same class.
  • protected: restricts visibility to the same class and its subclasses.
  • internal: restricts visibility to the same module.
  • public: allows visibility from anywhere.
open class VisibilityDemo {
    private val privateVal = "Private"
    protected open val protectedVal = "Protected"
    internal val internalVal = "Internal"
    val publicVal = "Public"  // public by default

    protected open fun protectedFunction() {
        println(protectedVal)
    }

    internal fun internalFunction() {
        println(internalVal)
    }

    fun publicFunction() {
        println(publicVal)
    }
}

class SubVisibilityDemo : VisibilityDemo() {
    override val protectedVal = "Overridden Protected"

    override fun protectedFunction() {
        println(protectedVal)
    }
}

fun main() {
    val demo = VisibilityDemo()
    val subDemo = SubVisibilityDemo()

    // println(demo.privateVal) // Error: Cannot access 'privateVal': it is private in 'VisibilityDemo'
    // println(demo.protectedVal) // Error: Cannot access 'protectedVal': it is protected in 'VisibilityDemo'
    println(demo.internalVal)  // Accessible within the same module
    println(demo.publicVal)  // Accessible everywhere

    demo.publicFunction()
    subDemo.protectedFunction()  // Accessible in subclass
}

Constructors and Visibility:

By default, constructors in Kotlin are public. However, you can modify the visibility of constructors using the constructor keyword.

class CustomConstructor private constructor(val a: Int) {
    // This constructor is private
}

fun main() {
    // val instance = CustomConstructor(1) // Error: Cannot access 'CustomConstructor': it is private in 'CustomConstructor'
}

Constructor initialization:

class Person (name: String) {
    init {
        println("Person instance created")
    }
}
  • Constructor can have default values and named arguments can be passed while calling them.

Secondary constructors

class Pizza constructor (
    var crustSize: String,
    var crustType: String,
    val toppings: MutableList<String> = mutableListOf()
) {

    // secondary constructor (no-args)
    constructor() : this("SMALL", "THIN")

    // secondary constructor (2-args)
    constructor(crustSize: String, crustType: String) : this(crustSize, crustType, mutableListOf<String>())

    //secondary constructor with body
    constructor(a: Int, b:Int) {
        var c = a + b
        println("The sum of numbers 5 and 6 is: ${c}")
    }

    //secondary constructor with this() call first
    constructor(a: Int) : this(a, 7) {
        println("Final constructor") //The constructor which is defined above this constructor will be called first.
    }

    override fun toString(): String = "size: ${crustSize}, type: ${crustType}, toppings: ${toppings}"

}

Late-initialized properties and variables

A lateinit variable is used when you know that a variable will be initialized before it is used, but you don't want to assign an initial value at the time of declaration.

lateinit var myLateInitVar: String

// The variable is not initialized yet, so trying to access it will throw an exception
// println(myLateInitVar) // This line would throw a "lateinit property has not been initialized" exception

// Sometime later, the variable is initialized
myLateInitVar = "Hello World"

// Now we can access the variable without an exception
println(myLateInitVar) // Prints "Hello World"

Imports and Packages

  • Package statements are just like Java, but they don’t have to match the directory the file is in.
  • Files don’t have to contain class declarations
package foo.bar

fun plus1(i: Int) = i + 1
fun double(i: Int) = i * 2
import foo.bar.plus1
  • No “import static”
import java.lang.Math.PI
PI
//3.141592653589793

import java.lang.Math.pow
pow(2.0, 2.0)
//4.0
  • Renaming a class when you import it
import java.util.HashMap as JavaHashMap

val map = JavaHashMap<String, String>();

map.put("first_name", "Alvin")
//null

map
//{first_name=Alvin}

Inheritance

Inheritance is the process by which one class acquires the properties and methods of another class.

open class Animal(val name: String) {
   open fun makeSound() {
      println("Animal sound")
   }
}

class Dog(name: String): Animal(name) {
   override fun makeSound() {
      println("Woof!")
   }
}

Another example with super constructor

fun main(args: Array<String>) {
    Child(18018, "Sagnik")
}
 
open class Parent {
    constructor (emp_id: Int, emp_name: String, emp_salary: Double) {
        var id: Int = emp_id
        var name: String = emp_name
        var salary : Double = emp_salary
        println("Employee id is: $id")
        println("Employee name: $name")
        println("Employee salary: $salary")
        println()
    }
}
class Child : Parent {
    constructor (emp_id : Int, emp_name: String):super(emp_id,emp_name,500000.55){
        var id: Int = emp_id
        var name: String = emp_name
        println("Employee id is: $id")
        println("Employee name: $name")
    }
}

Interface and Abstract Class

Both interface and abstract class provide a way to define contracts or blueprints for classes to follow. They are used for abstraction.

interface Vehicle {
    fun start()
    fun stop()
    val name: String
}
abstract class Animal {
    abstract fun makeSound()
    open fun move() {
        println("Moving...")
    }
}

Abstraction

Abstraction is a mechanism for hiding the implementation details of an object and exposing only the necessary details to the user. In Kotlin, abstraction is achieved through interfaces and abstract classes.

Polymorphism

Polymorphism is the ability of an object to take many forms.

class Dog : Animal() {
    override fun makeSound() {
        println("Woof!")
    }
}

class Cat : Animal() {
    override fun makeSound() {
        println("Meow!")
    }
}

In this example, both Dog and Cat classes inherit from the Animal abstract class and provide their own implementation of the makeSound() method, which demonstrates polymorphism.

Object Expression and Declaration

An object expression creates an instance of an anonymous class, while an object declaration creates a singleton instance of a class.

val person = object {
    val name = "Ali"
    fun sayHello() {
        println("Hello, my name is $name")
    }
}

object Singleton {
    fun doSomething() {
        println("Doing something...")
    }
}

Companion objects An object declaration inside a class can be marked with the companion keyword.

class MyClass {
    companion object { }
}

Data class

A data class is a special class that is designed to hold data. toString(), equals() and hashCode() methods are provided by default using constructor parameters.

data class Person(val name: String, var age: Int)

val person = Person("Ali", 24)

Nested and Inner class

  • A nested class is a class that is defined inside another class.
  • An inner class is a nested class that has access to the members of the outer class.
class Outer {
   private val outerProperty = "Outer property"

   class Nested {
      fun foo() {
         // can't access outerProperty
      }
   }

   inner class Inner {
      fun bar() {
         println(outerProperty) // can access outerProperty
      }
   }
}

Type aliases

Type aliases provide alternative names for existing types. If the type name is too long you can introduce a different shorter name and use the new one instead.

Before using a type alias

val numbers = listOf(1, 2, 3, 4, 5)
numbers.filter { number: Int -> number % 2 == 0 }.map { number: Int -> "Number is $number" }

After using a type alias

typealias NumberPredicate = (Int) -> Boolean
typealias NumberMapper = (Int) -> String

val numbers = listOf(1, 2, 3, 4, 5)
val even: NumberPredicate = { number -> number % 2 == 0 }
val mapper: NumberMapper = { number -> "Number is $number" }
numbers.filter(even).map(mapper)

Enum

An enum is a type that represents a fixed set of values.

enum class Color {
   RED, GREEN, BLUE
}

Sealed class and interface

A sealed class/interface restricts the inheritance of its subclasses/interfaces to only within the same file.

sealed class Shape

class Circle: Shape()

// Can't subclass Shape outside of this file

Generics

A generic concept in Kotlin allows for type-safe programming by creating reusable classes, functions, and interfaces that can work with any data type.

class Box<T>(t: T) {
    var value = t
}

Delegation Pattern

Kotlin supports easy implementation of the delegation pattern on the native level without any boilerplate code.

interface Base {
    fun print()
}

class BaseImpl(val x: Int) : Base {
    override fun print() { print(x) }
}

class Derived(b: Base) : Base by b

fun main() {
    val b = BaseImpl(10)
    Derived(b).print()
}

Delegated properties

Delegated properties in Kotlin allow the definition of custom getters and setters for a property that can be delegated to another object, such as the lazy initialization of a property.

A lazy variable is initialized only when it is first accessed.

val myLazyVar: String by lazy {
    // Perform some expensive operation to initialize the variable
    "Hello World"
}
// The variable is not initialized until it is first accessed
println(myLazyVar) // Prints "Hello World"

Android

Here's an example of kotlin with android (which is also an example of trailing lambda or function parameter):

fab.setOnClickListener(object : View.OnClickListener {
    override fun onClick(view: View) {
        save("Note1.txt")
    }
})

//The above code can be written as

fab.setOnClickListener { save("Note1.txt") }

Other Topics

Destructuring declarations

Destructuring declarations in Kotlin allow you to break down objects into individual variables in a single line of code.

 val person=Person("Ali",24)
 val (name, age) = person

Reflection

Reflection is a set of language and library features that allows you to introspect the structure of your program at runtime.

This is a example:

  // Obtain a Class object for the String class
    val stringClass = String::class.java

    // Get the fields of the String class and print their names
    val fields = stringClass.declaredFields
    for (field in fields) {
        println(field.name)
    }

    // Get the methods of the String class and print their names
    val methods = stringClass.declaredMethods
    for (method in methods) {
        println(method.name)
    }

Annotations

Annotations in Kotlin are special labels that can be applied to declarations such as classes, functions, and properties to provide additional information or metadata about the declaration at compile-time and runtime. This is a example:

@Deprecated("Use newMethod() instead", ReplaceWith("newMethod()"))
fun oldMethod() {
    // ...
}

Packages and imports

Packages are used to group related classes, functions, and other declarations together. Imports are used to make declarations from other packages accessible within your current file.

package com.example.models

class Person(val name: String, val age: Int) {
    // class implementation
}
import com.example.models.Person

fun main() {
    val person = Person("Ali", 24)
    println("Name: ${person.name}, Age: ${person.age}")
}

Null safety

Kotlin has null safety, which helps prevent null pointer exceptions. Kotlin provides operators to work with nullable types, including safe call, elvis, and not-null assertion operators. These features help developers write more reliable code and avoid null pointer exceptions.

    var nullableStr: String? = null
    var nonNullStr: String = "Hello"

    nullableStr.length //error: only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type String?

    // safe call operator
    println(nullableStr?.length) // prints null

    // elvis operator
    val len = nullableStr?.length ?: -1
    println(len) // prints -1

    // not-null assertion operator
    // throws null pointer exceptions because nullableStr is null
    println(nullableStr!!.length)

    // this would not compile because nonNullStr is not nullable
    // nonNullStr = null

    val name: String? = null
    //name might be changed later ...

    name?.let { println("The name is $it") }
    //If name is null you won’t see any output;

    listOfNotNull("a", "b", null)  //[a, b]
    listOf("a", "b", null)         //[a, b, null]

Equality

In Kotlin there are two types of equality:

  • Structural equality (== - a check for equals())

  • Referential equality (=== - two references point to the same object)

data class Person(val name:String,val age:Int)

val person1=Person("Ali",24)
val person2=Person("Reza",27)
var person3=Person("Ali",24)

print(person1==person2) // false
print(person1!=person2) // true
print(person1===person2) // false
print(person1==person3) // true
print(person1===person3) // flase
print(person1!==person3) // true

person3=person1

print(person1===person3) // true
  • The == operator in Kotlin is equivalent to calling the equals() method.
  • Data classes generate an equals() method based on their properties, but regular classes do not.
  • To compare objects for equality based on their contents, you need to override the equals() method for regular classes.
class Test{
    var name:String=""
    override fun equals(other: Any?): Boolean {
        return this.name==(other as Test).name
    }
}

Please for more detaile read doc.

Comparable

You can compare objects using the Comparable interface. This interface defines a compareTo method that compares the current object with another object and returns an integer value that indicates the order of the objects.

data class Person(val name: String, val age: Int) : Comparable<Person> {
    override fun compareTo(other: Person): Int {
        return this.age.compareTo(other.age)
    }
}
val person1 = Person("Ali", 24)
val person2 = Person("Reza", 30)

if (person1 < person2) {
    println("${person1.name} is younger than ${person2.name}")
} else {
    println("${person1.name} is older than ${person2.name}")
}

When you use the sorted() or sort() function to sort a list of objects, Kotlin uses the compareTo() method of the objects to determine their natural order. If the objects in the list do not implement the Comparable interface, you will get a compile-time error.

val people = listOf(
    Person("Ali", 24),
    Person("Reza", 40),
    Person("Shabnam", 23)
)
val sortedPeople = people.sorted()
println(sortedPeople) // [Person(name=Shabnam, age=23), Person(name=Ali, age=24), Person(name=Reza, age=40)]

Regex

Regex, short for regular expression, is a sequence of characters that forms a pattern used to match and manipulate text.

Regex Basics

  • . Matches any character except newline.
  • ^ Matches the start of a string, or start of line in multi-line pattern.
  • \A Matches the start of a string.
  • $ Matches the end of a string, or end of line in multi-line pattern.
  • \Z Matches the end of a string.
  • \b Matches a word boundary.
  • \B Matches a position that is not a word boundary.
  • \d Matches a digit (0-9).
  • \D Matches a non-digit.
  • \w Matches a word character (letter, digit, or underscore).
  • \W Matches a non-word character.
  • \s Matches a whitespace character (space, tab, newline, etc.).
  • \S Matches a non-whitespace character.
  • () Groups
  • [] Matches any character inside the square brackets.
  • [^] Matches any character not inside the square brackets.
  • * Matches 0 or more of the preceding element.
  • + Matches 1 or more of the preceding element.
  • ? Matches 0 or 1 of the preceding element.
  • {n} Matches exactly n occurrences of the preceding element.
  • {n,} Matches n or more occurrences of the preceding element.
  • {n,m} Matches between n and m occurrences of the preceding element.

Kotlin provides several functions for working with regular expressions, including: matches, find, findAll, replace, split and etc.

This is a simple example:

    val phoneNumber="9112233445"
    val phoneNumber2="9178"
    val phoneNumber3="93abc"
    val regex = Regex("^\\d{10}$")
    println(regex.matches(phoneNumber)) // true
    println(regex.matches(phoneNumber2)) // false
    println(regex.matches(phoneNumber3)) // false

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors