.java使用未经检查或不安全的操作。注意:使用-Xlint重新编译:取消选中以获取详细信息

时间:2013-12-01 01:42:47

标签: java reflection

我的老师给了我们一些示例代码,以帮助显示Java中的反射是如何工作的,但是我遇到了一些错误:

Note: DynamicMethodInvocation.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.

以下是代码:

import java.lang.reflect.*;
import java.lang.Class;
import static java.lang.System.out;
import static java.lang.System.err;

public class DynamicMethodInvocation {
  public void work(int i, String s) {
     out.printf("Called: i=%d, s=%s%n\n", i, s);
  }

  public static void main(String[] args) {
    DynamicMethodInvocation x = new DynamicMethodInvocation();

    Class clX = x.getClass();
    out.println("class of x: " + clX + '\n');

    // To find a method, need array of matching Class types.
    Class[] argTypes = { int.class, String.class };

    // Find a Method object for the given method.
    Method toInvoke = null;
    try {
      toInvoke = clX.getMethod("work", argTypes);
      out.println("method found: " + toInvoke + '\n');
    } catch (NoSuchMethodException e) {
      err.println(e);
    }

    // To invoke the method, need the invocation arguments, as an Object array
    Object[] theArgs = { 42, "Chocolate Chips" };

    // The last step: invoke the method.
    try {
      toInvoke.invoke(x, theArgs);
    } catch (IllegalAccessException e) {
      err.println(e);
    } catch (InvocationTargetException e) {
      err.println(e);
    }
  } 
}

我对反射一无所知,如果有人知道如何修改此代码以使其编译,我将非常感激。

2 个答案:

答案 0 :(得分:6)

没有编译错误,这只是一个警告。你可以忽略这一点,班级仍然可以正常运作。

如果您想忽略这些警告,可以在方法上方添加以下内容:

  @SuppressWarnings("unchecked")

或者,您可以通过将main方法更改为:

来解决此问题
public static void main(String[] args) {
    DynamicMethodInvocation x = new DynamicMethodInvocation();

    Class<?> clX = x.getClass(); // added the generic ?
    ...
  } 

答案 1 :(得分:0)

Note: Recompile with -Xlint:unchecked for details.

javac -Xlint:unchecked filename.java
  

它将显示未经检查的必须通过用户定义或系统定义异常代码

捕获的所有异常