Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Interoperability
Kotlin -> Java
https://kotlinlang.org/docs/reference/java-interop.html
Kotlin can almost use any Java code without issue.
Instanciate a new user and display its email
1
2
3
4
val user: UserJava = TODO()
fun displayEmail(): Unit = TODO()
Enter to Rename, Shift+Enter to Preview
1
public class UserJava {
Enter to Rename, Shift+Enter to Preview
Java -> Kotlin
https://kotlinlang.org/docs/reference/java-to-kotlin-interop.html
Using Kotlin in Java is almost quite easy.
Check if the password of the user is valid (at least 8 characters)
1
2
3
4
class User(val email: String, val password: String) {
fun isPasswordValid(): Boolean = TODO()
}
Enter to Rename, Shift+Enter to Preview
1
import org.junit.Test;
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content