c#生成高清縮略圖的二個示例分享。本站提示廣大學習愛好者:(c#生成高清縮略圖的二個示例分享)文章只能為提供參考,不一定能成為您想要的結果。以下是c#生成高清縮略圖的二個示例分享正文
反射說白了就是可以取得一個類的一切信息,重要包含辦法和屬性兩部門。
1.取得辦法包含取得辦法的稱號,辦法的前往類型,辦法的拜訪潤飾符,和經由過程反射履行這個辦法。
2.取得屬性包含屬性的稱號,類型,拜訪潤飾符,和這個屬性的值。
這些取得都有響應的API供給操作。
代碼以下:
package poi; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import org.apache.poi.xwpf.usermodel.XWPFSettings; public class ReflectMain { public static void main(String[] arg) throws SecurityException, NoSuchFieldException, IllegalArgumentException, IllegalAccessException, ClassNotFoundException, InstantiationException{ XWPFSettings ct = new XWPFSettings(); Class c = ct.getClass(); System.out.println("---------------------指定類的成員變量-----------------------"); System.out.println("反射取得的類的成員變量個數"); System.out.println(c.getDeclaredFields().length); for (Field fil : c.getDeclaredFields()) { System.out.print(fil.getType()+" "); System.out.println(fil.getName()); } System.out.println("------------------------類的結構辦法-----------------------"); for (Constructor constructor : c.getDeclaredConstructors()) { System.out.print(Modifier.toString(constructor.getModifiers())+" "); System.out.println(constructor.getName()); } System.out.println("--------------------------成員辦法--------------------------"); for (Method method : c.getDeclaredMethods()) { System.out.print(Modifier.toString(method.getModifiers())+" "); System.out.print(method.getReturnType()+" "); System.out.println(method.getName()); } System.out.println("---------------------------類的潤飾符------------------------"); int mod = c.getModifiers(); String modifier = Modifier.toString(mod); System.out.println("modifier = " + modifier); System.out.println("------------------------指定類的完整限制名--------------------"); System.out.println(c.getName()); System.out.println("------------------------指定類的父類限制名--------------------"); System.out.println(c.getSuperclass().getName()); } }
以上內容是本文引見java中若何反射獲得一個類的全體內容,願望對年夜家往後的進修有所贊助,同時也願望與列位年夜俠配合進修、提高。