ITWissen.info - Tech know how online

container

The term container is used in software development, but also in network technology and online services. In general, containers are containers that hold objects of the same type. This can refer to file formats in which bit streams are combined for transmission. The term container format is used in file formats for audio, video, and copy protection, as well as in the Synchronous Digital Hierarchy( SDH).

  1. In software development, a container is an object that in turn holds objects of the same type. A class with the main task of managing objects is called a container. Examples are lists, vectors and associative fields. In general, objects can be inserted into and removed from a container. A container is an abstract object that stores data of the same type. Here, a container organizes the required storage space and provides methods - also called element functions - to access the data. The data is accessed either directly or via iterators, which can be used to access individual data elements of the container. Since software development often requires structures of the same kind, containers map these structures - data and functions - on a higher level, as it were. Containers are based on templates, which means that any data types can be stored in the containers. In addition, many containers have similar element functions to process data. The concept of containers in C++ and Java distinguishes in
    • Sequential containers,
    • container adaptors and
    • Associative Containers.
    Sequential containers have their elements arranged as a linear sequence. This includes dynamic arrays( vector), linked lists (list) or a queue "with two ends" (deque). This means that a deque is optimized as a sequence so that the operations at both ends are as efficient as with lists. Container adaptors, in turn, are based on containers to provide special interfaces. Examples include queues, stacks, and the priorityqueue. Finally, the elements of associative containers have a key value and are sorted in a binary tree. These include trees (set), the sequence of key/value pairs(map), or even bit sets (bitset).
  2. In the SDH hierarchy, containers are bit streams of input bit rates. A container is understood to be the basic packing unit, the payload capacity for the tributary units( TU). The bit rate of a container is nominally synchronous with the basic SDH data rate. By adding a path overhead( POH), the container becomes a virtual container.
Informations:
Englisch: container
Updated at: 27.02.2017
#Words: 396
Links: software (SW), network, online services, indium (In), file
Translations: DE
Sharing:    

All rights reserved DATACOM Buchverlag GmbH © 2024