黑马程序员技术交流社区

标题: 这段代码那里错了? [打印本页]

作者: 寇弘禄    时间: 2013-2-26 20:23
标题: 这段代码那里错了?
照着张老师的写的,我这个运行怎么报错?
  1. public class Test {

  2.         /**
  3.          * @param args
  4.          * @throws NoSuchMethodException
  5.          * @throws SecurityException
  6.          */
  7.         public static void main(String[] args) throws SecurityException, NoSuchMethodException {
  8.                 // TODO Auto-generated method stub
  9.                 Method applyMethod = Test.class.getMethod("applyVetor",Vector.class);
  10.                 Type[] types = applyMethod.getGenericParameterTypes();
  11.                 ParameterizedType pType = (ParameterizedType)types[0];
  12.                 System.out.println(pType.getRawType());
  13.                 System.out.println(pType.getActualTypeArguments()[0]);
  14.         }
  15.         public static void applyVector(Vector<Date> v1){
  16.                
  17.         }
  18. }
复制代码

作者: jonn    时间: 2013-2-26 21:02
Method applyMethod = Test.class.getMethod("applyVetor",Vector.class);
方法名找不到的异常...

改成

Method applyMethod = Test.class.getMethod("applyVector",Vector.class);
作者: 黑马刘杰    时间: 2013-2-26 21:04
Method applyMethod = Test.class.getMethod("applyVetor",Vector.class);这里的applyVetor应该是appleyVector,拼写错误
作者: 寇弘禄    时间: 2013-2-26 21:06
赵文 发表于 2013-2-26 21:02
Method applyMethod = Test.class.getMethod("applyVetor",Vector.class);
方法名找不到的异常...

哦 谢谢 确实是方法名错了,刚才看了半天没看出来。
作者: 寇弘禄    时间: 2013-2-26 21:08
黑马刘杰 发表于 2013-2-26 21:04
Method applyMethod = Test.class.getMethod("applyVetor",Vector.class);这里的applyVetor应该是appleyVec ...

恩 谢谢,是这错了。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2