Premium Partner

PDA Glossary

Glossary

Glossary


Set of flashcards Details

Flashcards 194
Language English
Category Computer Science
Level Other
Created / Updated 29.01.2018 / 30.01.2018
Licencing Not defined
Weblink
https://card2brain.ch/box/20180129_pda_glossary
Embed
<iframe src="https://card2brain.ch/box/20180129_pda_glossary/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
polymorphic:

Pertaining to a function that can work with more than one type.

type-based dispatch:

A programming pattern that checks the type of an operand and invokes different functions for different types.

operator overloading:

Changing the behavior of an operator like + so it works with a programmer-defined type.

positional argument:

An argument that does not include a parameter name, so it is not a keyword argument.

subject:

The object a method is invoked on.

method:

A function that is defined inside a class definition and is invoked on instances of that class.

object-oriented programming:

A style of programming in which data and the operations that manipulate it are organized into classes and methods.

object-oriented language:

A language that provides features, such as programmerdefined types and methods, that facilitate object-oriented programming.