Friday, April 26, 2024
HomeAndroidHigher Order Functions in Kotlin with examples

Higher Order Functions in Kotlin with examples

-

There are many advanced features in Kotlin which gives an edge for the user using this language over Java. One such feature is Higher Order Functions in Kotlin.

In this Article, let us see what are the advantages of using Higher Order functions in Kotlin along with examples where and how we can use them.

Here is our YouTube video on Higher Order Functions from our channel CodeRefer. Do subscribe to receive all the latest video updates.

What you will learn by the end of this article?

By the end of this article you will be able to understand

Higher Order Functions

A function is called a Higher Order function if it satisfies any of the following:

  • If it accepts a function as a parameter,
  • If it returns a function

Advantages of Using Higher Order Functions

  • Higher Order functions helps reduce the code redundancy by allowing the common code functionality to be passed as a function to another function
  • Increases readability of the code.

Code Examples

You may also like:

Let us see the practical examples of Function accepting a function.

Function accepting a Function

fun main(args: Array<String>) {
val list = listOf(1,2,3,4,5)
list.forEach({a -> a*a})
}
view raw gistfile1.txt hosted with ❤ by GitHub

In the above example, line 3 consists of forEach function which accepts lambda expression as a parameter. This lambda expression is being applied to each of the list item. Lambda Expressions will be explained in depth in our next article.

Function Returning a Function

Below is an example where a Function returns another function.

fun main(args: Array<String>) {
val areaOfSquare = area()
println(areaOfSquare(5))
println(areaOfSquare(10))
}
fun area() : (Int) -> Int {
return {i -> i * i}
}

In the above snippet, at line 8, we can see that area() function returns a lambda function. which we used in our lines 3,4.

Our Next article will be on Lambda Expressions in detail and how to use them. In case of any queries, feel free to leave a comment below.

Vamsi Tallapudi
Vamsi Tallapudi
Architect Technology at Cognizant | Full Stack Engineer | Technical Blogger | AI Enthusiast

2 COMMENTS

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.

LATEST POSTS

Binary Tree Traversals in Kotlin – PreOrder, InOrder and PostOrder Traversals

Binary Tree Traversals are most common Tree Problems in an Interview as well as Competitive Programming. They can be efficient while searching, inserting and deleting...

SOLID Principles in Android with Kotlin Examples

Recently I had an interview experience where I went blank when the interviewer posed an Interesting Question - Explain SOLID Principles and how they are...

Building a Multi Module App in Android | Modularization in Android #1

Recently, I was in requirement for developing a Multi Module app in Android and I was going through this great lecture on it. This article...

Using Static Factory Methods – Learning Effective Java Item 1

In this series, we will learn how to apply concepts of highly popular Java book, Effective Java, 2nd Edition. In the first article, we will...

Follow us

1,358FansLike
10FollowersFollow
400SubscribersSubscribe

Most Popular