原文:Is it possible to create a static variable that will only be accessed by two classes?
for example suppose that we have the classes A, B, C, D, E now A has a public static int variable I want this variable to be visible only in A and B classes, not in C,D,E. Is it possible to do this,...