📜  java 获取类名 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:28.733000             🧑  作者: Mango

代码示例1
//Just the name of the class
myObject.getClass().getSimpleName();

//The name of the class with the package name
myObject.getClass().getName();