Answer the question
In order to leave comments, you need to log in
How to correctly implement an interface method if there is also an abstract class?
Hello. There is an interface:
public interface Food {
void ShowProperties();
}
public abstract class Meal implements Food {
@Override
public abstract void ShowProperties();
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question