如何在Activity中扩展抽象类?

时间:2017-01-28 08:06:56

标签: android abstract-class

我有一个名为Customer的抽象类,并且MainActivity扩展Activity,但如何在MainActivity中扩展该Customer抽象类?

1 个答案:

答案 0 :(得分:1)

在Java中,无法多次继承。而不是它,你可以写:

public class Customer extends Activity{
  ...
}
public class class_name extends Customer{
  ...
}

你可以使用作文。使用组合的代码:

public class class_name{
  private Customer var_name;
  ...
}

有关详细信息:Difference between Inheritance and Composition