Java Technology

16
Java Technology 1

description

Java Technology. An Introduction. A Programming Language A Technology Java Development Kit Java API One Language: Three Editions Standard Edition Enterprise Edition Micro Edition. History: A Quick View. Developed by James Gosling in 1991. Originally named ‘Oak’. - PowerPoint PPT Presentation

Transcript of Java Technology

Page 1: Java Technology

Java Technology

1

Page 2: Java Technology

An Introduction

A Programming LanguageA Technology

Java Development KitJava API

One Language: Three EditionsStandard EditionEnterprise EditionMicro Edition

2

Page 3: Java Technology

History: A Quick View

Developed by James Gosling in 1991.Originally named ‘Oak’.Version 1.0 released in 1995.Version 1.1 released in 1997.Version 1.2 released in 1999.Version 1.3 released in 2000.Version 1.4 released in 2002.Version 5.0(previously known as 1.5)

released in 2004.

3

Page 4: Java Technology

Language Features

Object-orientedPlatform independentMulti-threadedAuto memory managementRobustSecureDynamic bindingInterfacing & enhancing legacy code

4

Page 5: Java Technology

Features: Object-oriented

Programming Methodologies:Programming around code (Structured

Approach)Programming around data (OO Approach)

OO Approach is more realistic & natural.Objects comprise state (data) & behavior

(methods).Objects encapsulate data.An Object may use features of another object.Objects show polymorphic behavior.

5

Page 6: Java Technology

Features: Platform Independent

Java is based on the concept of WORA.Java code requires both compiler &

interpreter.Java Compiler produces bytecode file (.class

file).Bytecode is meant for JVM, not for real

machine. JVM is specific to a platform & produces

platform-specific machine code.

6

Page 7: Java Technology

Features: Multi-threadedMulti-threading helps in achieving Multi-

tasking.Java has language-level support of Multi-

threading.A thread is an independent path of execution.Multi-threading saves wastage of CPU cycles. It

makes the application more productive & responsive.

7

Page 8: Java Technology

Features: Auto Memory Management

In Java, we don’t need to care of de-allocation of garbage (Un-referenced objects).

JVM delegates the job of garbage collection to a thread, called garbage collector.

Working of garbage collector is monitored & controlled by JVM itself.

8

Page 9: Java Technology

Features: Robust

Java is a strongly typed language (that is, all variables must be assigned an explicit data type).

Java has language-level support for exception handling.

Java automatically checks the array boundary. It’s not the case of its predecessors.

9

Page 10: Java Technology

Features: Secure

Elimination of direct memory pointers & automatic array limit checking prevents rogue programs from reaching into sections of memory where they shouldn’t.

Untrusted programs are restricted to run inside the virtual machine. Access to the platform can be strictly controlled by a security manager.

Code is checked for pathologies by a class loader and a bytecode verifier.

10

Page 11: Java Technology

Features: Interfacing & Enhancing Legacy Code

Java’s strong graphics and networking capabilities can be applied to existing C programs.

A Java graphical user interface (GUI) can bring enhanced ease of use to a C program, which then acts as a computational engine behind the GUI.

11

Page 12: Java Technology

A very basic Java Application

class FirstProgram{ public static void main(String [] argv) {

System.out.print("This is my First Program"); }}

Steps:-1. Save the source file as FirstProgram.java2. On the command line, compile the source file

javac FirstProgram.java3. Execute the class

java FirstProgram

12

Page 13: Java Technology

Understanding the main() method

main(String [] argv) method is the entry point for all Java applications.

An application must have a class definition that includes a main(String [] argv) method.

We execute the application by typing java at the command line, followed by the name of the class which contains the main method.

argv refers to a 1-D array of String type. It’s generally used to retrieve command-line arguments.

13

Page 14: Java Technology

Understanding Path & Classpath

Path refers to the file-system location of an executable file.syntax:-

set path = %path%;c:\program files\Java\jdk1.5\bin

Classpath refers to the file-system location of a .class file or .jar file.syntax:-set classpath = %classpath%;c:\JavaPrograms

14

Page 15: Java Technology

15

Page 16: Java Technology

16