Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Access specifier of methods in interfaces

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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
}

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

My Personal Notes arrow_drop_up
Last Updated : 07 Dec, 2018
Like Article
Save Article
Similar Reads
Related Tutorials