Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun...

11
Introduction to Java

Transcript of Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun...

Page 1: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

Introduction to Java

Page 2: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

2

Introduction to JavaHistory Java is a programming language created by James

Gosling from Sun Microsystems in 1991. The first publicly available version of Java (Java

1.0) was released in 1995. Over time new enhanced versions of Java have

been released. The current version of Java is Java 1.7 which is

also known as Java 7.

Page 3: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

3

Introduction to JavaJava Virtual machine The Java virtual machine (JVM) is a software

implementation of a computer that executes programs like a real machine.

Java programs are compiled by the Java compiler into so-called bytecode.

The Java virtual machine interprets this bytecode and executes the Java program.

Page 4: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

4

Introduction to JavaJava Runtime Environment vs. Java Development Kit Java comes in two flavors, the Java Runtime

Environment (JRE) and the Java Development Kit (JDK).

The Java runtime environment (JRE) consists of the JVM and the Java class libraries and contains the necessary functionality to start Java programs.

The JDK contains in addition the development tools necessary to create Java programs. The JDK consists therefore of a Java compiler, the Java virtual machine, and the Java class libraries.

Page 5: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

5

Introduction to JavaCharacteristics of Java The target of Java is to write a program once and then run this program on

multiple operating systems. Java has the following properties: Platform independent: Java programs use the Java virtual machine makes Java

programs highly portable. Object-orientated programming language: All elements in Java are objects. Interpreted and compiled language: Java source code is transferred into the

bytecode format which does not depend on the target platform. These bytecode instructions will be interpreted by the Java Virtual machine (JVM). The JVM contains a so called Hotspot-Compiler which translates performance critical bytecode instructions into native code instructions.

Automatic memory management: Java manages the memory allocation and de-allocation for creating new objects. The program does not have direct access to the memory. The so-called garbage collector deletes automatically objects to which no active pointer exists.

The Java syntax is similar to C++. Java is case sensitive

Page 6: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

6

Introduction to JavaDevelopment Process with Java The programmer writes Java source code in a text

editor which supports plain text. At some point the programmer calls the Java

compiler (javac). The Java compiler creates the bytecode

instructions. . These instructions are stored in .class files and can be executed by the Java Virtual Machine.

Page 7: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

7

Introduction to JavaWrite source code Open a text editor which supports plain text, e.g. Notepad under

Windows and write the following source code. You can start Notepad via Start → Run → Notepad and by

pressing enter. // A small Java program public class popo { public static void main(String[] args)

{ System.out.println("Hello World"); }};

Page 8: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

8

Introduction to JavaSave the source code in your javadir directory

with the popo.java filename. The name of a Java source file must always equals

the class name (within the source code) and end with the .java extension.

In this example the filename must be popo.java because the class is called popo.

Page 9: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

9

Introduction to JavaCompile and run your Java program Switch to the command line, e.g. under Windows

Start-> Run -> cmd. Switch to the javadir directory with the command

cd javadir, for example in my case cd c:\jdk1.2\bin.

Use the command dir to see that the source file is in the directory.

To compailjavac popo.java

Page 10: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

10

Introduction to JavaCheck the content of the directory with the command

"dir".The directory contains now a file “popo.class". If you see this file you have successfully compiled your first

Java source code into bytecode.

By default, the compiler puts each class file in the same directory as its source file.

Run -> cmd. Switch to the directory jardir. To run your program type in the command line:

java popo

Page 11: Introduction to Java. 2 History Java is a programming language created by James Gosling from Sun Microsystems in 1991. The first publicly available version.

11

Introduction to JavaHistory