码迷,mamicode.com
首页 > 其他好文 > 详细

获取当前类名

时间:2020-02-04 18:27:02      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:trace   nbsp   实例   不能   stat   静态方法   getname   tac   this   

 

获取类名:

1、在类的实例中可使用this.getClass().getName();适用于非静态方法,在static method中不能使用该方法;

2、在static method中使用方法:Thread.currentThread().getStackTrace()[1].getClassName();

获取方法名:Thread.currentThread().getStackTrace()[1].getMethodName();

获取代码行号:Thread.currentThread().getStackTrace()[1].getLineNumber();

获取当前类名

标签:trace   nbsp   实例   不能   stat   静态方法   getname   tac   this   

原文地址:https://www.cnblogs.com/zhaideang/p/12260288.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!