黑马程序员技术交流社区

标题: 这代码哪里错了 [打印本页]

作者: 啊全    时间: 2015-4-28 23:01
标题: 这代码哪里错了
public class Prog6{
        public static void main(String[] args){
                int m,n;
                try{
                        m = Integer.parseInt(args[0]);
                        n = Integer.parseInt(args[1]);
                }catch(ArrayIndexOutOfBoundsException e){
                        System.out.println("输入有误");
                        return;
作者: cyr    时间: 2015-4-29 12:57
改成如下代码就可以编译通过了,你代码少了“}”


  1. public class Test{

  2.          public static void main(String[] args){
  3.          int m,n;
  4.          try{
  5.                  m = Integer.parseInt(args[0]);
  6.                  n = Integer.parseInt(args[1]);
  7.          }catch(ArrayIndexOutOfBoundsException e){
  8.                  System.out.println("输入有误");
  9.                  return;}
  10.          }

  11. }
复制代码

作者: lhwinner    时间: 2015-4-29 16:07
如果这就是你全部的代码,就是应该少了连个中括号
作者: xgd6612    时间: 2015-4-29 16:48
如果你使用eclipse就可以自己知道哪里错了......挺好用的东西




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