line.java

来自「Beginning Java 2, SDK 1.4 Edition Exerci」· Java 代码 · 共 29 行

JAVA
29
字号
// Chapter 6 Exercise 3

// This class now inherits implementation of the ShapeInterface
// interface so it must implement the show() method, otherwise
// it would be and abstract class.

public class Line extends Shape {
  // End point is defined relative to start point:
  private Point end;                    // Line end point.

// Constructor:
  public Line(Point start, Point end) {
    // Assume line is drawn from reference point:
    position = new Point(start);	                  // First point is position.
    this.end = new Point(end.x-start.x, end.y - start.y); // Get end point coords relative to start. 
  }

  // Overrides the method inherited from Object:
  public String toString()  {  
    // Create a string representation of the object:
    return "Line: " + position + " to " + position.add(end);
  }

  // Method to display a line:
  public void show() {
    System.out.println("\n"+toString());
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?