Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What do Interfaces' static methods do?
Home
JAVA
What do Interfaces' static methods do?
0
votes
asked
Feb 28, 2023
in
JAVA
by
rajeshsharma
What do Interfaces' static methods do?
static-interface
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 28, 2023
by
rajeshsharma
Static methods, that contain method implementation and are accessed using the identity of the interface, are excellent for defining utility methods because they are controlled by the interface and cannot be overridden.
...