How can I combine two objects of different subclasses into the property of another class?

4 visualizzazioni (ultimi 30 giorni)
Hello,
I explain the example so that it is better understood: I have a "board" class with a "player" attribute. This attribute is a list of different objects of the "human player" class. If I want to add to this list "player" objects of the class "player cpu" I get an error.

Risposta accettata

Benjamin Kraus
Benjamin Kraus il 24 Mag 2018
Your classes need to derive from the matlab.mixin.Heterogeneous class.
Specifically, your player class needs to derive from matlab.mixin.Heterogeneous. Then, as long as all your other player classes derive from your main player base class, you should be all set.
Check out this documentation page for more details: Designing Heterogeneous Class Hierarchies

Più risposte (1)

Philip Borghesani
Philip Borghesani il 24 Mag 2018
Two ways to do this:
  1. Make player a cell array instead of an array of of human players. This is the simplest solution but may not be the best in the long run.
  2. Derive "human player" and "player cpu" from a common base class that is heterogeneous

Categorie

Scopri di più su Construct and Work with Object Arrays in Help Center e File Exchange

Prodotti


Release

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by