JAVA 反射问题
packagereflect;importjava.lang.reflect.*;classReflectTest{publicstaticvoidmain(String...
package reflect;
import java.lang.reflect.*;
class ReflectTest
{
public static void main(String[] args)throws Exception
{
System.out.println(args.length);
if (args.length == 1)
{
Class cc = Class.forName(args[0]);
try
{
Class[] params = new Class[1];
params[0] = int.class;
Constructor con = cc.getConstructor(params);
System.out.println(con);
}
catch (Exception ex)
{
System.out.println("error: " + ex.toString());
}
Class[] params1 = new Class[]{Integer.TYPE};
Constructor con1 = cc.getDeclaredConstructor(params1);
System.out.println(con1);
}
}
}
class Point
{
int x;
int y;
Point(){}
Point(int x)
{
this.x = x;
}
public Point(int x, int y)
{
this.x = x;
this.y = y;
}
}
结果:
警告:[unchecked] 对作为普通类型 java.lang.Class 的成员的 getConstructor(java.lang.Class<?>...) 的调用未经检查
Constructor con = cc.getConstructor(params);
^
警告:[unchecked] 对作为普通类型 java.lang.Class 的成员的 getDeclaredConstructor(java.lang.Class<?>...) 的调用未经检查
Constructor con1 = cc.getDeclaredConstructor(params1);
请问为什么出现这种情况, 怎么解决? 展开
import java.lang.reflect.*;
class ReflectTest
{
public static void main(String[] args)throws Exception
{
System.out.println(args.length);
if (args.length == 1)
{
Class cc = Class.forName(args[0]);
try
{
Class[] params = new Class[1];
params[0] = int.class;
Constructor con = cc.getConstructor(params);
System.out.println(con);
}
catch (Exception ex)
{
System.out.println("error: " + ex.toString());
}
Class[] params1 = new Class[]{Integer.TYPE};
Constructor con1 = cc.getDeclaredConstructor(params1);
System.out.println(con1);
}
}
}
class Point
{
int x;
int y;
Point(){}
Point(int x)
{
this.x = x;
}
public Point(int x, int y)
{
this.x = x;
this.y = y;
}
}
结果:
警告:[unchecked] 对作为普通类型 java.lang.Class 的成员的 getConstructor(java.lang.Class<?>...) 的调用未经检查
Constructor con = cc.getConstructor(params);
^
警告:[unchecked] 对作为普通类型 java.lang.Class 的成员的 getDeclaredConstructor(java.lang.Class<?>...) 的调用未经检查
Constructor con1 = cc.getDeclaredConstructor(params1);
请问为什么出现这种情况, 怎么解决? 展开
3个回答
展开全部
还是我来回答你吧!!
首先 反射调用方式没有错!
为什么会有错误提示呢?? 因为 你的 point 类中没有 public 的构造方法。
所以Constructor con = cc.getConstructor(params); 这句话出错
你的程序应该这样改一下:
1.将两个类分开定义:
就是 放在两个java 文件里 并且 把point 设置为public 的 代码如下
public class Point
{
int x;
int y;
public Point(){}
public Point(int x)
{
this.x = x;
}
public Point(int x, int y)
{
this.x = x;
this.y = y;
}
}
然后 运行 你的 main 程序入口函数 就可以了。
希望我的解释能够你带来帮助。
首先 反射调用方式没有错!
为什么会有错误提示呢?? 因为 你的 point 类中没有 public 的构造方法。
所以Constructor con = cc.getConstructor(params); 这句话出错
你的程序应该这样改一下:
1.将两个类分开定义:
就是 放在两个java 文件里 并且 把point 设置为public 的 代码如下
public class Point
{
int x;
int y;
public Point(){}
public Point(int x)
{
this.x = x;
}
public Point(int x, int y)
{
this.x = x;
this.y = y;
}
}
然后 运行 你的 main 程序入口函数 就可以了。
希望我的解释能够你带来帮助。
追问
我自己找出来了 Class cc = Class.forName(args[0]); 改为 Class cc = Class.forName(args[0]); 就可以了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询