当前位置: 代码迷 >> J2SE >> 看看哪里错了。
  详细解决方案

看看哪里错了。

热度:337   发布时间:2016-04-24 18:12:27.0
看看错哪了。。。
public class Point{
  public double x;
  public double y;
public void show(){
  System.out.println("("+x+","+y+")");
}
public Point(double x1,double y1){
  x=x1;
  y=y1;
}
public static void main(String args[]){
  double a;
  double b;
  Point m=new Point(12.5,8);
  Point n=new Point(10,5);
  public void getMiddle(Point m,Point n){
  a=(m.x+n.x)/2;
  b=(m.y+n.y)/2;
  System.out.println("("+a+","+b+")");
  }
  }
}

------解决方案--------------------
Java code
public class Point{      public double x;      public double y;    public void show(){      System.out.println("("+x+","+y+")");    }    public Point(double x1,double y1){      x=x1;      y=y1;    }    public static void getMiddle(Point m,Point n){          double a;          double b;          a=(m.x+n.x)/2;          b=(m.y+n.y)/2;          System.out.println("("+a+","+b+")");          }    public static void main(String args[]){         Point m=new Point(12.5,8);         Point n=new Point(10,5);         getMiddle(m, n);            }    }
------解决方案--------------------
main函数里怎么又写了个方法
main函数不属于任何类
看看下面帮你改的
Java code
package com.yxk.test;public  class Point{      public double x;      public double y;          public void show(){      System.out.println("("+x+","+y+")");    }    public Point(){}    public Point(double x1,double y1){      x=x1;      y=y1;    }    public static class Test{         public void getMiddle(Point m,Point n){              double a;              double b;              a=(m.x+n.x)/2;              b=(m.y+n.y)/2;              System.out.println("("+a+","+b+")");              }    }public static void main(String args[]){           Point m=new Point(12.5,8);      Point n=new Point(10,5);      new Test().getMiddle(m, n);      }    }
------解决方案--------------------
探讨
为什么方法不能在main方法里使用呢
  相关解决方案