java學習之反射

反射 什麼是類對象 類的對象:new出來的對象,也稱爲實例對象。 類對象:類加載的產物,封裝了一個類的所有信息(類名,父類,接口。屬性,方法,構造方法) 獲取類對象 通過類的對象,獲取類對象 Student s = new Student(); Class c = s.getClass(); 通過類名獲取類對象 Class c = 類名.class; 通過·靜態方法獲取類對象 Class c =
相關文章
相關標籤/搜索