Kotlin Tour
joow
22.2K views
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()
1
public class UserJava {
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()
}
1
import org.junit.Test;
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.