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.
我有一个类和一个方法。该方法的访问修饰符现在是私有的,但可以更改。现在我只希望该方法只能在另一个类中看到。
顺便说一句,另一个班级和我的班级在同一个目录中。
允许类中的方法仅对另一个类可用的唯一方法是使用嵌套的私有类。
public class Enclosing { private class InnerClass { public void MyMethodThatCanOnlyBeUsedByEnclosingClass() {} } }