⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 circle.java

📁 Beginning Java 2, SDK 1.4 Edition Exercise Code samples for this book
💻 JAVA
字号:
// 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 Circle extends Shape {
  private double radius;	// Radius of circle.

// Constructors:
  public Circle(Point center, double radius) {
    // Center of the circle is the position:
    position = new Point(center);	// Store position - new Point object for independence.
    this.radius = radius;		// Store the radius.
  }

  // Overrides method inherited from Object:
  public String toString() { 
    // Create a string representation of the object:					
    return "Circle: Center " + position + " Radius " + radius;
  }

  public void show() {					
    System.out.println("\n" + toString());
  }
}

⌨️ 快捷键说明

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