标签: java methods interface access-modifiers
java中接口方法的默认访问修饰符是什么?什么应该是其包私有方法的实现的访问修饰符?
public interface FooBar{ public void Foo(); void Bar(); }