======= Objects ======= .. Modified: 2018-10-23/05:38-0400 btiffin .. Copyright 2016 Brian Tiffin .. GPL 3.0+ :ref:`license` .. This file is part of the Unicon Programming documentation .. image:: images/unicon.png :align: center .. only:: html :ref:`genindex` :floatright:`<a href="http://unicon.sourceforge.net/">Unicon</a>` .. index:: objects .. _objects: Unicon Objects and Classes ========================== The object oriented features of Unicon stem from an early :ref:`Icon` preprocessor, called :ref:`IDOL`. Unicon supports object oriented design and development, but is not a purely object oriented language. Unlike, for instance, Ruby where *everything is an object*, Unicon is still very much an *everything is an expression* language. Native types are native types, and objects are a design and development assistive technology, not a *core* element of the Unicon programming language. Objects and classes add another aspect to the multi-paradigm dimensions of Unicon programming. Unicon supports :ref:`class` declarations, and :ref:`method` definitions within an inherited hierarchy of classes. :ref:`class` defined words create instances of objects that allow method calls in an object oriented fashion. The Unicon view of object oriented programming *(and there are many different points of view regarding OO)* starts with encapsulation, inheritance, and polymorphism. .. note:: Objects and classes are very much a *programming in the large* design and development feature. Many of the examples in this document will be small, contrived, and may belittle the powerful potentials of object oriented design and programming. Try and overlook the small, and think big when applying :ref:`class` elements to your programs. On the flip side, as a cautionary warning, don't try and shoehorn a small problem into objects when the procedural elements of Unicon would be more appropriate. SOLID ----- There is an object oriented set of principles, with a mnemonic acronym, SOLID. - **S**\ ingle responsibility - **O**\ pen-closed - **L**\ iskov substitution - **I**\ nterface segregation - **D**\ ependency inversion These principles are outlined at `SOLID: Wikipedia <https://en.wikipedia.org/wiki/SOLID_%28object-oriented_design%29>`_ The Unicon implementation of objects and classes can be applied to uphold these principles of design. *But like many general purpose, flexible, programming languages, they are guidelines to be applied when they are of benefit and suit working habits.* .. todo:: map out Unicon examples of each SOLID principle .. index:: IDOL .. _IDOL: IDOL ---- The Icon Derived Object Language, by :ref:`Clint`, circa 1990. See https://www.cs.arizona.edu/icon/ftp/doc/tr90_10.pdf for the initial Idol technical report from January of 1990. .. todo:: Much to do regarding the Objects chapter. .. only:: html .. -------- :ref:`genindex` | Previous: :doc:`patterns` | Next: :doc:`graphics` |