java - Getting the Object Calling a Method -
in java, how can object calling method, within method calling, if method in class? have looked on internet , no solution. please help?
the way can think of pass this
method,
static void somemethod(object o) { system.out.println(o); } void testit() { somemethod(this); // <-- pass current instance method. }
Comments
Post a Comment