Java中静态方法返回类名

    技术2022-05-11  3

    public static thisClassName=null; public static String getClassName() { if(thisClassName!=null)return thisClassName; try { throw new Exception(); } catch (Exception e) { StackTraceElement[] element=e.getStackTrace(); className=element[0].getClassName(); } return className; }

    [备忘]


    最新回复(0)