In Java, all methods in an interface are public even if we do not specify public with method names. Also, data fields are public static final even if we do not mention it with fields names. Therefore, data fields must be initialized.
Consider the following example, x is by default public static final and foo() is public even if there are no specifiers.
interface Test { int x = 10; // x is public static final and must be initialized here void foo(); // foo() is public } |
chevron_right
filter_none
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Access specifiers for classes or interfaces in Java
- Private Methods in Java 9 Interfaces
- Two interfaces with same methods having same signature but different return types
- Access and Non Access Modifiers in Java
- Static methods vs Instance methods in Java
- Interfaces in Java
- Interfaces in Java
- Callback using Interfaces in Java
- Interfaces and Inheritance in Java
- Functional Interfaces In Java
- Access Modifiers in C++
- Access Modifiers in Java
- Method Overriding with Access Modifier
- Java | CDMA (Code Division Multiple Access)
- More restrictive access to a derived class method in Java



