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.
这个私有嵌套接口有什么用?
以下代码供参考:
class a { private static interface Ione { void mone(); } }
当方法的功能只与包含的类相关时,你会这样做,即使那样它也不是你必须做的事情。这将是那些编码偏好的事情之一。因此,作为示例,您将拥有其他想要实现 Ione 的类,并且您希望那些其他类知道 Ione 与 a 类相关。
public class SomeOtherClass implements a.Ione { ... }