Difference between kotlin and Java .
Kotlin:
- Kotlin supports Object-oriented and functional programming .
- There are no Null variables in kotlin .
- It doesn’t supports implicit conversation.
- Kotlin does not require to specify data types of variable .
- Kotlin do not require semicolons.
- Less chances to crash application.
Java:
- Java supports only limited Object-oriented .
- Null variables and objects are parts of Java
- It supports implicit conversation.
- While java require specify data types of the variable.
- Java require semicolons.
- More chances to crash application.
Comments
Post a Comment