I am trying to understand few of the Kotlin features by checking how it looks in Java side.
So as an experiment, I tried with this:
val printKotlin = fun () {
print("Hello Kotlin")
}
So the output for the above snippet is:
public final class FunAsVariableKt {
private static final Function0 printKotlin;
public static final Function0 getPrintKotlin() {
return printKotlin;
}
static {
printKotlin = (Function0)null.INSTANCE;
}
}
How do I understand the static block of the above decompiled code? Why it is generating this non working code?
Use the Kotlin bytecode inspector to see what is being generated as JVM bytecode rather than trying to decompile bytecode to Java, which likely won't work for code generated by a different language compiler because it might not follow the expected patterns. A bytecode decompiler does not always generate working code.
The NULL instance you are seeing is a misinterpretation by your decompiler, and you can see all references to
INSTANCE
in the bytecode are setting values correctly.This is the actual output: