Presentation is loading. Please wait.

Presentation is loading. Please wait.

Java History, Editions, Version Features

Similar presentations


Presentation on theme: "Java History, Editions, Version Features"— Presentation transcript:

1 Java History, Editions, Version Features

2 History of Java Java was Designed by Sun Microsystems
James Gosling, Mike Sheridan, and Patrick Naughton initiated the Java language project in June The small team of sun engineers called Green Team. Originally designed for small, embedded systems in electronic appliances like set-top boxes. It took 18 months to develop the first working version Initial Name of Java was OAK James Gosling

3 Why Oak name for java language?
Oak is a symbol of strength and chosen as a national tree of many countries like U.S.A., France, Germany, etc. In 1995, Oak was renamed as "JAVA".

4 Why Java name for java language?
According to James Gosling "Java was one of the top choices along with Silk". Since java was so unique, most of the team members preferred java. Java is an island of Indonesia where first coffee was produced (called java coffee). JDK 1.0 released in(January 23, 1996).

5 Java Version History There are many java versions that has been released. JDK Alpha and Beta (1995) JDK 1.0 (23rd Jan, 1996) JDK 1.1 (19th Feb, 1997) J2SE 1.2 (8th Dec, 1998) J2SE 1.3 (8th May, 2000) J2SE 1.4 (6th Feb, 2002) J2SE 5.0 (30th Sep, 2004) Java SE 6 (11th Dec, 2006) Java SE 7 (28th July, 2011)

6 Java Edition Java Standard Edition (J2SE)
J2SE can be used to develop client-side standalone applications or applets. Java Enterprise Edition (J2EE) J2EE can be used to develop server-side applications such as Java servlets and Java ServerPages. Java Micro Edition (J2ME). J2ME can be used to develop applications for mobile devices such as cell phones.

7 Features of Java ( java buzzwords.)
Simple Object-Oriented Platform Independent secured Robust Architecture Neutral Portable High Performance Distributed Multi-threaded

8 Features of Java Simple
According to Sun, Java language is simple because: syntax is based on C++ (so easier for programmers to learn it after C++). removed many confusing and/or rarely-used features e.g., explicit pointers, operator overloading etc. No need to remove unreferenced objects because there is Automatic Garbage Collection in java.

9 Features of Java Object-oriented Object Class Inheritance Polymorphism
Java is an Object Oriented language OOPs In Java everything is Object which has some data and behavior Like C++ java provides most of the OOPs features Java is pure OOPs language Basic Concepts of OOPs are Object Class Inheritance Polymorphism Abstraction Encapsulation

10 Features of Java Platform Independent
A platform is the hardware or software environment in which a program runs. There are two types of platforms software-based and hardware-based. Java provides software-based platform. Java can runs on any Operating System. Java is guaranteed to be write-once, run-any where language (WORA)

11 Features of Java Platform Independent
Java code can be run on multiple platforms e.g. Windows, Linux, Mac/OS etc. Java code is compiled by the compiler and converted into bytecode. This bytecode is a platform independent code because it can be run on multiple platforms i.e. Write Once and Run Anywhere(WORA).

12 Features of Java secured Java is secured because No explicit pointer
Java Program always run in java runtime environment with almost null interaction with OS, hence it is more secure

13 Features of Java Robust Robust simply means strong.
Java uses strong memory management. There are lack of pointers that avoids security problem. There is automatic garbage collection in java. There is exception handling and type checking mechanism in java. All these points makes java robust.

14 Features of Java Architecture-Neutral
There is no implementation dependent features e.g. size of primitive types is set compiler generates bytecodes, which have nothing to do with a particular computer architecture Easy to interpret on any machine

15 Features of Java Portable
Java may carry the java bytecode to any platform High-performance Java enables the creation of cross-platform programs by compiling into an intermediate representation called Java bytecode by using a just-in-time compiler. This code can be interpreted on any system that provides a Java Virtual Machine. Most previous attempts at cross platform solutions have done so at the expense of performance.

16 Features of Java Distributed
We can create distributed applications in java. RMI and EJB are used for creating distributed applications. We may access files by calling the methods from any machine on the internet.

17 Features of Java Multi-threaded
A thread is like a separate program, executing concurrently. We can write Java programs that deal with many tasks at once by defining multiple threads. The main advantage of multi-threading is that it shares the same memory. Threads are important for multi-media, Web applications etc.


Download ppt "Java History, Editions, Version Features"

Similar presentations


Ads by Google