Что означает строка this (x,y,10 ) в теле конструктора ? И почему нельзя было решить так: public Circle(double x, double y) { this.x = x; this.y = y; this.radius = 10; Circle ci = new Circle(this.x, this.y, this.radius); } ??