The interface does not have a method body, so it hardly matters which method is implemented
See the following example.
package test; public class a implements i,j{ @Override public void run() {
In the class, a run() overridden, but does it matter if it is from the interface i or j
Springlearner
source share