使用对象构造 : 构造 « 反射 « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 反射 » 构造 
7. 3. 2. 使用对象构造
/*
 *     file: ConstructorDemo.java
 *  package: oreilly.hcj.reflection
 *
 * This software is granted under the terms of the Common Public License,
 * CPL, which may be found at the following URL:
 * http://www-124.ibm.com/developerworks/oss/CPLv1.0.htm
 *
 * Copyright(c) 2003-2005 by the authors indicated in the @author tags.
 * All Rights are Reserved by the various authors.
 *
########## DO NOT EDIT ABOVE THIS LINE ########## */


import java.lang.reflect.Constructor;

/**  
 * Demonstrates use of Constructor objects.
 *
 @author <a href=mailto:kraythe@arcor.de>Robert Simmons jr. (kraythe)</a>
 @version $Revision$
 */
public class ConstructorDemo {
  /** 
   * Run the demo.
   *
   @param args Command line arguments.
   */
  public static void main(final String[] args) {
    try {
      final Class[] ARG_TYPES = new Class[] { String.class };

      Constructor cst = Integer.class.getConstructor(ARG_TYPES);

      System.out.println(cst.newInstance(new Object[] { "45" }));
    catch (final Exception ex) {
      ex.printStackTrace();
    }
  }
}

/* ########## End of File ########## */
7. 3. 构造
7. 3. 1. Get all constructors or by parameters
7. 3. 2. 使用对象构造
7. 3. 3. A program that displays a class synopsis for the named class
7. 3. 4. 从构造创建新的实例
7. 3. 5. Modifier.PUBLIC | Modifier.PRIVATE | Modifier.PROTECTED
7. 3. 6. 类加载Class.forName
7. 3. 7. 呼叫私有构造方法
7. 3. 8. 获取构造函数参数类型
7. 3. 9. 调用一个构造函数抛出异常
7. 3. 10. Passing a parameter to the constructor and calling a method dynamically
7. 3. 11. Getting a Constructor of a Class Object: By obtaining a list of all Constructors object
7. 3. 12. Getting a Constructor of a Class Object: By obtaining a particular Constructor object.
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.