Skip to main content

 

Kotlin Function

function means use big problems divided by submodule and easily problems solved. It makes reusability of code and makes the program more manageable

There are two types of functions:
  1. Standard library function
  2. User-defined function

Standard Library Function

Kotlin Standard library function is built-in library functions
import java.time.LocalDateTime

fun main(args: Array<String>) {

    val current = LocalDateTime.now()

    println("Current Date and Time is: $current")
}

User-defined Function

A user-defined is created by the user. User-defined function takes the parameter(s), perform an action and return the result of that action as a value.

  1. fun main(args: Array<String>){  
  2.     sum()  
  3.     print("code after sum")  
  4. }  
  5. fun sum(){  
  6.     var num1 =5  
  7.     var num2 = 6  
  8.     println("sum = "+(num1+num2))  
  9. }  

paremetarize function : 

  1. fun main(args: Array<String>){  
  2.    val result = sum(56)  
  3.     print(result)  
  4. }  
  5. fun sum(number1: Int, number2:Int): Int{  
  6.     val add = number1+number2  
  7.     return add  
  8. }  





Comments