当我输入以下CODES后,JAVA显示说:无法访问的语句, 应该怎么修改呀?/** 
   * Method to get the line's x coordinate.
   * @return the x coordinate
   */
  public int getX() {
    return x1; 
    return x2;  
  /** 
   * Method to get the line's y coordinate.
   * @return the y coordinate
   */
  public int getY() {
    return y1;
    return y2;  }