Web.CGIApp.TCGIFactory.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create;

C++

__fastcall TCGIFactory();

Properties

Type Visibility Source Unit Parent
constructor public
Web.CGIApp.pas
Web.CGIApp.hpp
Web.CGIApp TCGIFactory

Description

Constructs an object and initializes its data before the object is first used.

Do not create instances of Create. Instead, construct descendants of Create using the new keyword, passing any arguments for the descendent object's constructor.

Descendent objects usually define a constructor that creates the particular kind of object and initializes its data.

Note: If an exception escapes from a constructor, the object's destructor is called to clean up the failed instance.

See Also