文件一,本类中可以访问全部: package xsf; /** * Created by liwenj on 2017/7/25. */ public class A { private int x=12;//私有 int y=1;//friendly public int z=2;//公共 protected int m=14;//受保护 public int getX() { return x; } public void setX(int x) { this.x = x; } public…