API:System.Contnrs.TQueue

From RAD Studio API Documentation
Jump to: navigation, search

System.Contnrs.TOrderedListSystem.TObjectTQueue

Delphi

TQueue = class(TOrderedList)

C++

class PASCALIMPLEMENTATION TQueue : public TOrderedList

Properties

Type Visibility Source Unit Parent
class public
System.Contnrs.pas
System.Contnrs.hpp
System.Contnrs System.Contnrs

Description

TOrderedList maintains an array of pointers that must be accessed in serial order.

System.Contnrs.TQueue inherits from System.Contnrs.TOrderedList. All content below this line refers to System.Contnrs.TOrderedList.

TOrderedList maintains an array of pointers that must be accessed in serial order.

TOrderedList is an abstract class that represents a list. Descendent classes like TStack and TQueue override the protected PushItem method to determine the order in which to access items.

See Also