[Overview][Types][Classes][Procedures and functions] Reference for unit 'contnrs' (#fcl)

TQueue

[Properties (by Name)] [Methods (by Name)] [Events (by Name)]

Pointer queue

Declaration

Source position: contnrs.pp line 165

type TQueue = class(TOrderedList)

end;

Inheritance

TQueue

  

Pointer queue

|

TOrderedList

  

Base class for queues and stacks.

|

TObject

Description

TQueueis a descendent of TOrderedListwhich implements Pushand Popbehaviour as a queue: what is first pushed on the queue, is popped of first (FIFO: First in, first out).

TQueueoffers no new methods, it merely implements some abstract methods introduced by TOrderedList

See also

TOrderedList

  

Base class for queues and stacks.

TObjectQueue

TStack

  

Pointer Stack