这里面包含了一百多个JAVA源文件

源代码在线查看: e116. getting a constructor of a class object.txt

软件大小: 551 K
上传用户: maple_78
关键词: JAVA
下载地址: 免注册下载 普通下载 VIP

相关代码

				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				        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) {
				    }
				
							

相关资源