问答详情
源自:7-1 编程练习

大佬教教我,这个怎么编写


http://img1.mukewang.com/5aeffcf60001cf4510800352.jpg

提问者:慕设计0026821 2018-05-07 15:15

个回答

  • Caesarsuixin
    2018-05-08 14:51:58

    public class Point{     //点类

        int x ; //横坐标属性
        int y ;  //纵坐标属性
     
        public Point(){} //无参构造方法;
        /**
        *带参构造方法
        *x为横坐标属性
        *y为纵坐标属性
        */
        public Point(int x ,int y){
            this x = x;
            this y = y;
        }

    }

    //Line同上。