Java获取当前正在运行的方法名称
@Test
void contextLoads() {
String name = new Object(){}.getClass().getEnclosingMethod().getName();
System.out.println(name);
//输出 :contextLoads
}
Loading...
@Test
void contextLoads() {
String name = new Object(){}.getClass().getEnclosingMethod().getName();
System.out.println(name);
//输出 :contextLoads
}