frida-java-bridge icon indicating copy to clipboard operation
frida-java-bridge copied to clipboard

inheritence similar function problem

Open 0x410c opened this issue 5 years ago • 1 comments

In my case scenario there is class A which extends abstract class B,

now class B has a method :

public void A00()
{
}

and class A has method :

public static String A00(.. , ..)
{
}

now when i create an instance of class A and try to call A00 the static function declared in class A gets called, how do i call the base A00 function?

0x410c avatar Mar 25 '20 19:03 0x410c

this.$super

gives the super class object, thought the name is same(is this a bug?)

0x410c avatar Mar 27 '20 20:03 0x410c