1

我创建了一个类来包含一个带有我的应用程序徽标的自定义标题栏。这很好用,除了对于我的大多数类,我需要能够继承该功能以及 ListActivity 的功能。该怎么办?

任何帮助表示赞赏。

4

2 回答 2

8

您应该支持组合(和委托)而不是继承:

   public interface FirstClassInterface {
       void method1();
   }

   public interface SecondClassInterface {
       void method2();
   }

   public class FirstClass implements FirstClassInterface {
       // ...
   }

   public class SecondClass implements SecondClassInterface  {
       // ...
   }

   public class FirstAndSecondClass implements FirstClassInterface , SecondClassInterface       
    {
       private FirstClassInterface firstclass;
       private SecondClassInterface secondclass;

       public FirstAndSecondClass(FirstClassInterface firstclassinterface, SecondClassInterface   secondclassinterface) {
           this.firstclass= firstclassinterface;
           this.secondclass= secondclassinterface;
       }

       public void method1() {
           this.firstclass.method1();
       }

       public void method2() {
           this.secondclass.method2();
       }

       public static void main(String[] args) {
           FirstAndSecondClass t = new FirstAndSecondClass(new FirstClass(), new SecondClass());
           t.method1();
           t.method2();
       }
   }
于 2012-12-10T19:48:57.073 回答
3

在 Java 中,您不能拥有:

class MyClass extends ClassA, ClassB { ... }

根据您在做什么,可能会使用:

class ClassB extends ClassA { ... }

class MyClass extends ClassB { ... }
于 2012-12-10T19:43:15.060 回答