External Interfaces Previous page   Next Page

Concatenating Java Objects

You can concatenate Java objects in the same way that you concatenate native MATLAB data types. You use either the cat function or the square bracket operators to tell MATLAB to assemble the enclosed objects into a single object.

Concatenating Objects of the Same Class

If all of the objects being operated on are of the same Java class, then the concatenation of those objects produces an array of objects from the same class.

In the following example, the cat function concatenates two objects of the class java.awt.Point. The class of the result is also java.awt.Point.

Concatenating Objects of Unlike Classes

When you concatenate objects of unlike classes, MATLAB finds one class from which all of the input objects inherit, and makes the output an instance of this class. MATLAB selects the lowest common parent in the Java class hierarchy as the output class.

For example, concatenating objects of java.lang.Byte, java.lang.Integer, and java.lang.Double yields an object of java.lang.Number, since this is the common parent to the three input classes.

If there is no common, lower level parent, then the resultant class is java.lang.Object, which is the root of the entire Java class hierarchy.


Previous page  Creating and Using Java Objects Saving and Loading Java Objects to MAT-Files Next page

© 1994-2005 The MathWorks, Inc.