public class Solution { public static void main(String[] args) throws Exception { } public interface Animal { Color getColor(); Integer getAge(); } public abstract static class Fox implements Animal { // почему если я не сделаю класс абстрактным, программа не скомпилируется public String getName() { return "Fox"; } } }