0 votes
in JAVA by
Can you declare an interface method static?

1 Answer

0 votes
by

No, because methods of an interface are abstract by default, and we can not use static and abstract together.

...