Java获取当前运行方法所在的类和方法名

很简单,直接看代码:

	public void showClassAndMethod() {
System.out.println(this.getClass().getSimpleName() + ":"
+ new Exception().getStackTrace()[0].getMethodName());
}
上一篇:ios 开发UI篇—UITextView


下一篇:[转帖]一文读懂 HTTP/2