如何获取一个类的全名
类名没有大写,....随便测一下。。。。API里有
package com.liruilong.fileserver; /** * @Description : * @Author: Liruilong * @Date: 2020/10/3 20:27 */ public class test { public static void main(String[] args) { Class t = test.class; System.out.println(t.getName()); System.out.println(t.getCanonicalName()); System.out.println(t.getPackage().getName()+t.getSimpleName()); } }
加油,愿被这世界温柔以待 ^_^