<<< Object Paradigm Summary | Index | What to expect from an object-oriented programming language? >>> |
Model, design, and implementation consist of interacting functions.
Functions share centralized state, known as global.
Function local state does not survive their execution.
Functions encapsulate algorithms.
Global state is not encapsulated.
Functions can cause side effects, that is, functions impact other functions
by changing the global state.
<<< Object Paradigm Summary | Index | What to expect from an object-oriented programming language? >>> |