为了账号安全,请及时绑定邮箱和手机立即绑定

java报错


package javaapplication1;


import java.awt.Point;

import java.awt.Rectangle;




 /**

 *

 * @author LENOVO

 */

public class HelloWorld {


    /** Creates a new instance of HelloWorld */

   

    public static void main(String[] args){

    //Declare and create a point object and two rectangle objects.

    Point originOne=new Point(23,94);

    Rectangle rectOne=new Rectangle(originOne,100,200);

    Rectangle rectTwo=new Rectangle(50,100);

    

    //display rectOne's' width,height,and area

    System.out.println("Width of rectOne:"+rectOne.width);

    System.out.println("Height of rectOne:"+rectOne.height);

    System.out.println("Area of rectOne:"+rectOne.getArea());

    

    // rectTwo's position

    rectTwo.orgin=originOne;

    

    //display recentTwo's position

    System.out.println("X Position of rectTwo:"+rectTwo.orgin.x);

    System.out.println("Y Position of rectTwo:"+rectTwo.orgin.y);

    

    //move rectTwo and display its new position

    rectTwo.move(40,72);

    System.out.println("X Position of rectTwo:"+rectTwo.origin.x);

    System.out.println("Y Position of rectTwo:"+rectTwo.origin.y);   

    }

}

http://img1.sycdn.imooc.com//600eb3f30001801304630194.jpgRectangle rectOne=new Rectangle(originOne,100,200);这一行报错

请教一下老师,是为什么呢

正在回答

1 回答

可能是你写的类方法的名字或者参数类型或参数的数量不对

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Java入门第一季(IDEA工具)升级版
  • 参与学习       1165206    人
  • 解答问题       17581    个

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

进入课程
意见反馈 帮助中心 APP下载
官方微信