释义 |
aggregate type aggregate type (programming)A data type composed of multiple elements. Anaggregate can be homogeneous (all elements have the same type)e.g. an array, a list in a functional language, a stringof characters, a file; or it can be heterogeneous (elementscan have different types) e.g. a structure. In mostlanguages aggregates can contain elements which are themselvesaggregates. e.g. a list of lists.
See also union. |