OOP Glossary


Browse the glossary using this index

Special | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | ALL

O

Object

an instance of a class, representing a specific entity with its own state and behavior.

Objects interact with each other through methods, enabling communication and collaboration within the system.

Entry link: Object

Object-Oriented Programming

OOP is a way of organizing code that emphasizes the use of objects to represent real-world entities and their interactions.

 

Object-oriented programming (OOP) is a programming paradigm based on the concept of ”objects”, which can contain data and code: data in the form of fields (often known as attributes or properties), and code, in the form of procedures (often known as methods). — Wikipedia

Entry link: Object-Oriented Programming