Java inheritance: How to achieve something similar to “multiple inheritance” when it is not allowed in Java?

后端 未结 3 1134
礼貌的吻别
礼貌的吻别 2021-01-18 21:10

This is a question mostly about Java inheritance. I am developing a program which has 2 windows, both of which will be developed in separate classes which will extend JPanel

3条回答
  •  轮回少年
    2021-01-18 21:13

    Prefer Composition over Inheritance

    Include a FileThing in your JPanel subclass, instead of making it a FileThing and a JPanel.

提交回复
热议问题