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

Popular posts from this blog

Regex find and replace between <div class="customclass"> and </div> tag -

jpa - Passing entitymanager from reflection method -