Issue
I'm trying to understand the difference between using/not using @JvmStatic, and when I should use either one.
So, with Kotlin and Java, I can do this:
TestKotlin.kt
class TestKotlin {
companion object {
val someString = "hello world"
}
}
Which is then called by Java, like this:
TestJava.java
public class TestJava {
String kotlinStaticString = TestKotlin.Companion.getSomeString();
}
but then, there's this option 2:
TestKotlin.kt
v2
class TestKotlin {
companion object {
@JvmStatic // <-- notice the @JvmStatic annotation
val someString = "hello world"
}
}
And then, call it from Java, like this:
TestJava.java
v2
public class TestJava {
String kotlinStaticString = TestKotlin.getSomeString();
}
So my questions are:
- Are these 2 cases any different, in terms of behavior or memory allocation?
- Is there a preference on which one to use?
- Do both create a pseudo static singleton object, like Java static does?
Thanks!
Solution
The behavior of the @JvmStatic
annotation is explained in detail in the documentation. When reading the documentation, you should assume that it gives you all the important information, and behavior differences that are not mentioned in the documentation do not exist.
In this case, the documentation says:
If you use this annotation, the compiler will generate both a static method in the enclosing class of the object and an instance method in the object itself.
In other words, the effect of the annotation is that it tells the compiler to generate an additional method.
Does the documentation mention that there is any difference in behavior or memory allocation? It does not. Therefore, it's safe to assume that there is none.
Is there a preference on which one to use? Normally, an API is declared in one place and used from multiple places. If you're calling a method from Java, then you should declare it as @JvmStatic
, because adding the @JvmStatic
annotation in one place will allow you to leave out multiple .Companion
references in multiple places.
Do both create a pseudo static singleton object, like Java static does? This question does not make sense, because Java static does not create a "pseudo static singleton object". If you declare a static method in a Java class, and then call this method, no objects will be created.
Answered By - yole
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.