How can I combine two objects of different subclasses into the property of another class?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ignacio Estaún
am 24 Mai 2018
Kommentiert: Ignacio Estaún
am 25 Mai 2018
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.
0 Kommentare
Akzeptierte Antwort
Benjamin Kraus
am 24 Mai 2018
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.
Weitere Antworten (1)
Philip Borghesani
am 24 Mai 2018
Two ways to do this:
- 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.
- Derive "human player" and "player cpu" from a common base class that is heterogeneous
0 Kommentare
Siehe auch
Kategorien
Mehr zu Construct and Work with Object Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!