Java Glossary : orthogonal

CMP home Java glossary home Menu no menu Last updated 2004-06-28 by Roedy Green ©1996-2004 Canadian Mind Products

Java definitions: 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

You are here : home : Java Glossary : O words : orthogonal.

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 logo
CMP_home
home
Canadian Mind Products CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[24.87.56.253]
Your IP:[80.134.30.163]
You are visitor number 837.
Please send errors, omissions and suggestions
to improve this page to Roedy Green.
You can get a fresh copy of this page from: or possibly from your local J: drive mirror:
http://mindprod.com/jgloss/orthogonal.html J:\mindprod\jgloss\orthogonal.html