Java / Interface
Can you specify the accessibility modifier for methods inside an interface?
All the methods inside an interface are always implicitly public and abstract. public and abstract can be mentioned explicitly whereas other access modifier are not allowed.
More Related questions...