Main Content

Construct and Work with Object Arrays

Object array construction and concatenation; heterogeneous arrays

Construct object arrays, reference objects and their properties from arrays, and design class hierarchies that support the formation of heterogeneous (mixed class) arrays.

Functions

empty Create empty array of specified class

Classes

matlab.mixin.Heterogeneous Superclass for heterogeneous array formation

Topics

Build Object Arrays

Concatenating Arrays

Object Converters and Class of Arrays

  • 隐式类转换
    MATLAB attempts to convert elements to the class of the array as a result of concatenation or assignment.
  • Object Converters
    You can convert an object of one class to an object of another class.
  • Determine Array Class
    You can determine the class of an array.

Heterogeneous Arrays

  • Designing Heterogeneous Class Hierarchies
    Heterogeneous arrays can contain objects of different class, but all objects in the array must derive from a common superclass.
  • Heterogeneous Array Constructors
    The class of a heterogeneous object array can change as you add array elements of different classes. You must ensure that constructors return objects that are the same class as the class defining the constructor.