被保护的( protected)成员 public class Rectangle //受保护的 member protected int xi protected int yi protected int width protected int height public class Cubicextends Rectangle i public int getvolumn() //可以直接使用父类别中的 width丶 height成员 return length* width*height被保护的(protected)成员 public class Rectangle { //受保护的member protected int x; protected int y; protected int width; protected int height; … } public class CubicextendsRectangle { … public int getVolumn() { //可以直接使用父类别中的width、height成员 return length*width*height; } }