以静态方式获取类名称

问题描述 投票:1回答:1

我可以使用new Exception获得称为方法的类名>

String className = new Exception().getStackTrace()[1].getClassName();

但是我可以通过静态方式获取类名吗?

edit

如果我在另一个类的方法中,并且想知道称为我的方法的类,则>

我可以使用新的异常字符串获得名为该方法的类名className = new Exception()。getStackTrace()[1] .getClassName();但是我可以通过静态方式获取类名吗?

java static classname
1个回答
1
投票

带包装的全名

MyClass.class.getName();

© www.soinside.com 2019 - 2024. All rights reserved.