class ColoredCircle extends Circle {
  String color;
  ColoredCircle(int r, String c) {
    super(r);
    color = c;
  }
}
閉じる

Copyright FUJITSU