?? e116. getting a constructor of a class object.txt
字號:
There are two ways of obtaining a Constructor object from a Class object.
// By obtaining a list of all Constructors object.
Constructor[] cons = cls.getDeclaredConstructors();
for (int i=0; i<cons.length; i++) {
Class[] paramTypes = cons[i].getParameterTypes();
process(cons[i]);
}
// By obtaining a particular Constructor object.
// This example retrieves java.awt.Point(int, int).
try {
Constructor con = java.awt.Point.class.getConstructor(new Class[]{int.class, int.class});
process(con);
} catch (NoSuchMethodException e) {
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -