可见性和Interface

在java中,一个interface的访问修饰符可以为public、default,但是不能为protected、private。

例如:

public interface IntfA {  //public, visible to all classes in a project.
}


interface IntfA {  //default, the interface is only visible to classes which in the same package as the interface.
}

这样写都是合法的。


关于interface中“抽象方法”的访问修饰符,我个人认为,除了private、protected不能使用,其他的例如public和default的作用范围是一样的。也就是说,在方法前加上public和什么都不加,作用范围是一样的,都被看作是public。

你可能感兴趣的:(interface,visibility,访问修饰符)