A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© chenyannna 中级黑马   /  2015-9-16 20:39  /  179 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. class method{
  2.         public static void main(String[] args) throws Exception {
  3.                 String startingClassName = args[0];//这句代码是什么意思
  4.                 Method mainMethod = Class.forName(startingClassName).getMethod("main",String[].class);
  5.                 mainMethod.invoke(null, (Object)new String[]{"111","222","333"});               
  6.         }       
  7. }
  8. public class FanShe6 {
  9.         public static void main(String[] args) {
  10.                 for(String arg:args){
  11.                         System.out.println(arg);
  12.                 }
  13.         }
  14. }
复制代码

2 个回复

倒序浏览
上面这个代码要运行需要配置下eclipse。把FanShe.FanShe6放入进去,这步是为什么呢
回复 使用道具 举报
代码里有标注了一句话是什么意思,求解答啊
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马