For the following code, which statement is not true?对于下面的代码,哪个语句是不正确的?public class Sphere{private double radius;public double x;private double y;private double z;}
A. x is available to code that is written outside the Circle class. x可用于在Circle类之外编写的代码
B. radius is not available to code written outside the Circle class. radius不能用于在Circle类之外编写的代码
C. radius, x, y, and z are called members of the Circle class. radius、x、y和z称为Circle类的成员
D. z is available to code that is written outside the Circle class. z可用于编写在Circle类之外的代码