Kotlin have ability to supports both object oriented programming (OOP) as well as functional programming. Object oriented programming that is oops is based on real …
Know everything about Live data in android jetpack
Mobile application users expect UI components to reply interactively with the changes and updates in related data for a more interactive and dynamic usage experience. …
Check this kotlin Exception handling and It’s type
Exception is a runtime problem which occurs at the runtime of the program and cause to program termination. This may be happen due to some …
Know about Control Flow and Loops in kotlin
Kotlin provide various kind of expression and loops which help us to control the flow of our program.Here are some expression and loops which kotlin …
Know about Kotlin Companion Object and Static Keyword
In other programming language like Java and C#, when we want to call the method and want to access the members of a class then …
Check this kotlin Infix, Lambda and Higher order functions now
In kotlin we have one word concept of infix function which is actually the Member function or the extension function in case of Kotlin. So …
Now you can know kotlin Companion Object and Static Keyword
In other programming language like Java and C#, when we want to call the method and want to access the members of a class then …
All you need to know about kotlin Null Safety Operator
What is Null Safety Operator? In kotlin by default the null value is not supported to avoids the null pointer exception we have a lot …
Check this kotlin Scope Functions and it’s type now
These scope functions provide the simplest way to offer temporary scope to the thing under some circumstances where specific operations will be applied to the …
Check this kotlin Extension and Inline functions now
Kotlin Extension Function Kotlin provide the feature of add new functionality to a class without use of the concept of inheritance This feature is called …