获取当前类名

Posted zhaideang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前类名相关的知识,希望对你有一定的参考价值。

 

获取类名:

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

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

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

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

以上是关于获取当前类名的主要内容,如果未能解决你的问题,请参考以下文章

获取当前类名

如何在Java中获取当前类名,包括包名?

Java运行时获取当前运行代码类名方法名

android 获取当前类的包名与类名

java获取当前类的类名和方法名

Java获取当前类名和方法名