|
| GAMES++ |
|
|
|
 |
|
| BROWSER UTILITIES |
|
|
|
 |
|
| AFFILIATES |
|
|
|
 |
|
| ADVERTISEMENT |
|
|
|
 |
|
Get The Current Method Name
Java: How To
JDK 1.4
public class MyTest
{
public static void main(String args[])
{
new MyTest().doit();
}
public void doit()
{
System.out.println(new Exception().getStackTrace()[0].getMethodName());
}
}
|
The Output
doit
|
|