jiangxingbing
12/12/2018, 2:08 AMA
extend from a Java class Base
which has a static function f()
. When I called A.f()
in a Kotlin file the IDE give an error ” Unresolved reference: f “. But when I called A.f()
in a Java class, It works fine. I want to know the reason and maybe correct implementation. Thanks!gildor
12/12/2018, 2:45 AM