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.
可能重复: Java 中的接口:不能使实现的方法受保护或私有
默认情况下,接口中的所有方法都是公共的和抽象的。我们不能在接口中定义私有方法,因为它的范围将在接口本身内部。所以私有是没有意义的导致编译时错误。
现在问题来了,为什么我们不能保护?