आप कोटलिन को जावा में बदल सकते हैं। फिर आप देख सकते हैं कि कॉन्स्ट में वैल की तुलना में एक अधिक स्थिर संशोधक है । इस तरह सरल कोड।
Kotlin:
const val str = "hello"
class SimplePerson(val name: String, var age: Int)
जावा (भाग) के लिए:
@NotNull
public static final String str = "hello";
public final class SimplePerson {
@NotNull
private final String name;
private int age;
@NotNull
public final String getName() {
return this.name;
}
public final int getAge() {
return this.age;
}
public final void setAge(int var1) {
this.age = var1;
}
public SimplePerson(@NotNull String name, int age) {
Intrinsics.checkParameterIsNotNull(name, "name");
super();
this.name = name;
this.age = age;
}
}