orthogonal : Java Glossary
home O words local find no local find frame, full screen Google search web for topic jump to footer translate with Babelfish by Roedy Green ©1996-2008 Canadian Mind Products
Go to : punctuation 0-9 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)
orthogonal
Literally, at right angles, hence independent or irrelevant to. The term is commonly used in describing computer instruction sets. With an orgothogonal instruction set, such as the Motorola 68000, you can use any register for any purpose. With a non-orthogonal set such as the Intel Pentium, each register has special properties. E.g. only CX can be used for counting string loops. BX can be used as an index register, but AX cannot. Only DX:AX can hold a dividend. Orthogonal instuction sets result in bulkier hand-generated assembler code, but are easier for compilers to generate optimally fast, compact code. More generally, in programming languages, orthogonality means design so that changes in one thing don’t effect another. The example they give a user interface and database — you should be able to swap the database without changing the interface or make changes to the interface without affecting the database.

Here are some examples of non-orthogonality in C:

  1. C has two kinds of built-in data structures, arrays and records (structs). Records can be returned from functions, but arrays cannot.
  2. A member of a struct can have any type except void or a structure of the same type.
  3. An array element can be any data type except void or a function.
  4. Parameters are passed by value, unless they are arrays, in which case they are passed by reference.
  5. a+b usually means that they are added, unless a is a pointer the value of b may be changed before the addition takes place.
Non-orthogonality means exceptions to the general language rules, which make it harder to learn. It means that you cannot combine language features in all possible ways. Excessive orthogonality makes it possible to say silly things in the language that complicate the compilers.

CMP_homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.18] Spread the Net
You are visitor number 7,007.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/Mindprod website mirror)
http://mindprod.com/jgloss/orthogonal.html J:\mindprod\jgloss\orthogonal.html