Derived Type

Noun · Development

Definitions

  1. A type that inherits from or extends a base type, gaining its properties and behaviors while potentially adding or overriding them. Common in Fortran, C++, and other statically typed languages.

    In plain English: A new type built on top of an existing one — like creating a 'sports car' type that starts with everything a 'car' already has, then adds turbo.

    Example: "The Employee derived type extends Person with a salary field and a promote() method."

Related Terms