Oak (programming language)

Print Print
Reading time 4:25

Oak is a discontinued programming language created by James Gosling in 1989, initially for Sun Microsystems' set-top box project. The language later evolved to become Java.

The name Oak was used by Gosling after an oak tree that stood outside his office.

History

Duke, Oak's smartgent that would later become the Java mascot

In 1995, Sun Microsystems was attempting to develop a new technology for programming next generation smart appliances, which Sun expected to be a major new opportunity.

The team originally considered using C++, but rejected the idea for several reasons (see Java history).

Initially, Gosling attempted to modify and extend C++ but soon abandoned that in favor of creating a new platform called Green and an entirely new language, which he called Oak, after the tree that stood just outside his office.[1]

By the summer of 1992, they were able to demonstrate portions of the new platform including the Green OS, the Oak language, the libraries, and the hardware. Their first attempt, demonstrated on September 3, 1992, focused on building a PDA device named Star7[1] which had a graphical interface and a smart agent called "Duke" to assist the user.

Oak was renamed Java in 1994 after a trademark search revealed that Oak was used by Oak Technology.[2]Java 1.0 was finally shipped in 1996.[3]

Differences with Java

Oak was the basis for what Java 1.0 became later, but there were also some differences:[4][5] Several concepts were planned in the Oak specification but were not implemented in the original language because of time constraints:

  • Unsigned primitive types turned out never to be implemented in Java.[6]
  • The enum keyword for enumerated types was implemented in Java for Java 5.0.
  • The assert keyword was implemented in Java for Java 1.4[7]

Other concepts were different from, or improved later, for Java:[4]

  • Abstract methods were defined as in C++.
  • While the Oak default access level was the same as Java's (default) package private access level, it was called "private". Oak did not have an equivalent to Java's private access modifier.

And finally some concepts were later scraped out:

  • All exceptions were unchecked.
  • It was possible by the unprotect keyword to write code that would not signal asynchronous exceptions.
  • There was some support for Design by Contract:[8] Oak had assertions whereby Class variable could be constrained and the constraints were enforced at entry and exit of every public and protected method of the class. Methods could also have their own pre-conditions and post-conditions, which were inherited but not redefinable in a subclass.[4][9]

References

  1. ^ Jon Byous (March 12, 2003). "Java Technology: An early history" (PDF). Sun Microsystems. Retrieved August 2, 2009. Gosling called the new language "Oak", after the tree outside his window
  2. ^ Murphy, Kieron (4 October 1996). "So why did they decide to call it Java?". JavaWorld. Retrieved 2020-07-15. 'The lawyers had told us that we couldn't use the name "OAK" because [it was already trademarked by] Oak Technologies,' said Frank Yellin, a senior engineer at Sun. 'So a brainstorming session was held to come up with ideas for a new name.'
  3. ^ Jonathan I. Schwartz (August 30, 2007). "Different Isn't Always Better, But Better's Always". Archived from the original on September 5, 2009. Retrieved August 2, 2009.
  4. ^ a b c Heinz Kabutz (August 26, 2002). "Once Upon an Oak ..." javaspecialists.eu. Retrieved August 2, 2009.
  5. ^ "Oak Language Specification". Sun Microsystems, Inc. Archived from the original on August 16, 2000. Retrieved March 6, 2015.
  6. ^ "Java and unsigned int, unsigned short, unsigned byte, unsigned long, etc. (Or rather, the lack thereof)". Retrieved August 2, 2009.
  7. ^ "A Simple Assertion Facility For the Java Programming Language". Sun Microsystems. Retrieved August 2, 2009.
  8. ^ Johannes Rieken (April 24, 2007). "Design by Contract for Java - Revised" (PDF). Retrieved October 2, 2010.
  9. ^ "Support For 'Design by Contract', beyond "a simple assertion facility"". Sun Microsystems. Retrieved October 2, 2010.

By: Wikipedia.org
Edited: 2021-06-18 18:14:58
Source: Wikipedia.org