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

Python Kivy ListView: How to delete selected ListItemButton? -

ruby - How do I merge two hashes into a hash of arrays? -