Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我要问的基本疑问。在这里问之前,我问过我的一些同事,甚至问过谷歌,但没有人回复我让我信服的答案。所以请任何人澄清我的疑问。谢谢你。
是的。private是一个访问修饰符,正如您可能已经了解到的那样,它限制成员只能在声明范围内访问。因此,作为 another 的成员class,private class只能在该类中访问。
private
class
private class
请注意,顶级类永远不能是私有的
class Test { private class TestInner{ } .... TestInner ti = new TestInner(); .... }