ADT
From APIDesign
(Difference between revisions)
(New page: wikipedia:Abstract_data_type stands for Abstract Data Type - an API design style where one knows operations for a type, but not their actual implementation. In contrary to ...) |
|||
Line 1: | Line 1: | ||
- | [[ | + | [[wikipedia:Abstract_data_type|ADT]] stands for [[Abstract Data Type]] - an [[API]] design style where one knows operations for a type, but not their actual implementation. In contrary to [[OOP]], the right operation isn't derived from the actual object - rather it is associated with the whole algorithm that operates on provided data. |
Revision as of 06:54, 8 October 2018
ADT stands for Abstract Data Type - an API design style where one knows operations for a type, but not their actual implementation. In contrary to OOP, the right operation isn't derived from the actual object - rather it is associated with the whole algorithm that operates on provided data.