API:System.Contnrs.TStack

From RAD Studio API Documentation
Jump to: navigation, search

System.Contnrs.TOrderedListSystem.TObjectTStack

Delphi

TStack = class(TOrderedList)

C++

class PASCALIMPLEMENTATION TStack : 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.TStack 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