kotlin

kotlin

How to use default parameters in Kotlin constructor

Learn how to use default parameters in kotlin constructor and how to initialize a class by using default parameters.

Read
kotlin

Numbers in Kotlin and different useful methods

Learn how to use number in Kotlin with different methods defined in it. We will see its built-in types, different types of use cases with examples.

Read
kotlin

How to rethrow an exception in Kotlin

Using try catch finally, we can handle an exception. Rethrowing an exception is used to rethrow an exception again in the catch block. In this post, we will learn how to rethrow exception in kotlin with example.

Read
kotlin

How to handle exceptions using try catch in Kotlin

Learn how to handle exceptions in Kotlin using try catch with different examples. We will explore how to throw an exception and how to use try catch blocks to handle.

Read
kotlin

Kotlin example to use aggregate with groupingBy

groupingBy method is used to group items of a collection using a keySelector function. It returns one Grouping object. For example, we can group a list of strings by the first character of each string. aggregate is another function that can be used with a Grouping to apply one operation on each element of each group sequentially. In this post, I will show you how to use groupingBy with one example.

Read
kotlin

What is JvmStatic annotation in Kotlin and why we use it

JvmStatic annotation or @JvmStatic is an important annotation of Kotlin. In this post, I will show you where JvmStatic is used and its use cases.

Read
kotlin

Kotlin groupingBy explanation with example

groupingBy function is used to group items and apply one operation using a keySelector function. It returns one Grouping object that we can use to call its other methods. In this post, I will quickly show you how to use groupingBy with examples.

Read
kotlin

Kotlin groupByTo method explanation with examples

groupByTo method is used to group elements of an array by a key returned by a key selector function. It is similar to groupBy. The only difference is that we can put the result in a mutable map.

Read
kotlin

Kotlin groupBy method explanation with example

groupBy method of Kotlin is used to group similar items of a collection. It is useful in many cases like we can group items based on type, length, object category, etc. It takes one selector function and based on that function it groups the items.

Read
kotlin

Different ways to convert string to long in Kotlin

In this post, I will show you different ways to convert one string to long in Kotlin. Kotlin provides different methods that make it easy to achieve.

Read