小面试题

 ------- android培训、java培训、期待与您交流! ----------

   在张老师的视频下出了一个题目,自己试着写写,还真有点眉目,记录下留用。

                小球从绳子的这一端移动到另一端

对象:小球 、绳子

分析:小球 , 移动的动作

           绳子,提供一个指针,指向,方向

class   Rope {

                  private    point   start ;

                  private    point    end;

public  Rope(Point  start,Point  end){this,start = start;this,end =end}

                     public point  next point  (point  current point ){通过两点一线的数字公式可以算出当前的下一个点。这个问题不属于设计阶段要考虑的问题,如果当前点是终止点,则返回null,如果当前点不是线上的点,则抛出异常。} }

class Ball {privat Rope rope ; private Point current point ;

        public Ball ( Rope rope ,start point ) {this rope=rope ;this current point point =start point}

public void move () {crrent point =rope ;current point (currentpoint );system out println ("小球移到了"+currentpoint)} }



你可能感兴趣的:(小面试题)