You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kotlin에는 Java의 static 키워드가 없지만, companion object를 사용하여 정적 메서드와 유사한 기능을 구현할 수 있습니다.
만약, Java 에서 정적 메서드를 사용하고 싶다면 Kotlin 에서는 @JvmStatic 어노테이션을 사용하여 정적 메서드를 생성할 수 있습니다.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Kotlin에는 Java의 static 키워드가 없지만, companion object를 사용하여 정적 메서드와 유사한 기능을 구현할 수 있습니다.
만약, Java 에서 정적 메서드를 사용하고 싶다면 Kotlin 에서는
@JvmStatic
어노테이션을 사용하여 정적 메서드를 생성할 수 있습니다.Beta Was this translation helpful? Give feedback.
All reactions