chapter 1 topics

37
1 Fall 2008 ACS-1903 Chapter 1 Topics Java History Java Programs Why Program? Computer Systems: Hardware and Software Programming Languages What Is a Program Made Of? The Programming Process Object-Oriented Programming But its most important to get a sense of what a Java program is, how to compile it, how to run it.

Upload: bryony

Post on 22-Jan-2016

43 views

Category:

Documents


0 download

DESCRIPTION

Chapter 1 Topics. Java History Java Programs Why Program? Computer Systems: Hardware and Software Programming Languages What Is a Program Made Of? The Programming Process Object-Oriented Programming. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Chapter 1  Topics

1Fall 2008 ACS-1903

Chapter 1 Topics

• Java History• Java Programs• Why Program?• Computer Systems: Hardware and Software• Programming Languages• What Is a Program Made Of?• The Programming Process• Object-Oriented Programming

But its most important to get a sense of what a Java program is, how to compile it, how to run it.

Page 2: Chapter 1  Topics

2Fall 2008 ACS-1903

Java History

• 1991 - Green Team started by Sun Microsystems

• There was a need for a programming language that would run on various devices.

• Java … initially named Oak

• Inventor of Java … James Gosling

• http://java.sun.com/features/1998/05/birthday.html

Page 3: Chapter 1  Topics

3Fall 2008 ACS-1903

Java History

• Java enabled web browser (HotJava) demonstrated at 1995 Sun World conference.

• Java is “cross platform”… it runs on various computer operating systems.

Page 4: Chapter 1  Topics

4Fall 2008 ACS-1903

Java Applications and Applets

• Java programs can be of two types:

• Applications• Stand-alone programs that run without the aid of a

web browser.• Applets

• Small applications that require the use of a Java enabled web browser to run.

Page 5: Chapter 1  Topics

5Fall 2008 ACS-1903

Why Program?

• Computers are tools … can be programmed for:

• Computers are versatile because they can be programmed.

• Computer Programmers implement programs that perform these functions.

•spreadsheets

•databases

•word processing

•games

•etc.

Page 6: Chapter 1  Topics

6Fall 2008 ACS-1903

Computer Systems: Hardware

• Computer hardware components are the physical pieces of the computer.

• The major hardware components of a computer are:

• The central processing unit (CPU)

• Main memory

• Secondary storage devices

• Input and Output devices

Page 7: Chapter 1  Topics

7Fall 2008 ACS-1903

Computer Systems: HardwareCentral Processing Unit

Instruction (input) Result (output)

ArithmeticLogicUnit

ControlUnit

CPU

Page 8: Chapter 1  Topics

8Fall 2008 ACS-1903

Computer Systems: HardwareCentral Processing Unit

• The CPU performs the fetch, decode, execute cycle in order to process program information.

Fetch

The CPU’s control unit fetches, from main memory, the next instruction in the sequence of program instructions.

Decode

The CPU’s control unit decodes the instruction and generates an electronic signal.Execute

The signal is routed to the appropriate component of the computer (such as the ALU, a disk drive, or some other device)… the operation is performed

Page 9: Chapter 1  Topics

9Fall 2008 ACS-1903

Computer Systems: HardwareMain Memory

• Commonly known as random-access memory (RAM)

• RAM contains:

• currently running programs• data used by programs.

• RAM is divided into units called bytes.

• A byte consists of eight bits that may be either on or off.

Page 10: Chapter 1  Topics

10Fall 2008 ACS-1903

Computer Systems: HardwareMain Memory

A section of memory is called a byte.

A section of two or four bytes is often called a word.

Main memory can be visualized as a column or row of cells.

0x0000x001

0x0030x002

0x0040x0050x0060x007

A byte is made up of 8 bits.1 0 1 0 1 0 1 0

Page 11: Chapter 1  Topics

11Fall 2008 ACS-1903

Computer Systems: Hardware

Input Devices

Output Devices

Input / OutputDevices

ALU

Control Unit

RAM

Page 12: Chapter 1  Topics

12Fall 2008 ACS-1903

Computer Systems: HardwareSecondary Storage Devices

• Secondary storage devices are capable of storing information for longer periods of time

• Common Secondary Storage devices:

•Hard drive

•Floppy drive

•CD RW drive

•USB drive

Page 13: Chapter 1  Topics

13Fall 2008 ACS-1903

Computer Systems: HardwareInput Devices

• Input is any data the computer collects from the outside world.

• Common input devices:

• Keyboard• Mouse• Scanner• Digital camera

Page 14: Chapter 1  Topics

14Fall 2008 ACS-1903

Computer Systems: HardwareOutput Devices

• Output is any data the computer sends to the outside world.

• That data is displayed on devices known as output devices.

• Common output devices:

• Monitors• Printers

• Some devices such as disk drives perform input and output and are called I/O devices (input/output).

Page 15: Chapter 1  Topics

15Fall 2008 ACS-1903

Computer Systems: Software

• Software refers to the programs that run on a computer.

• There are two classifications of software:

• Operating Systems

• Application Software

Page 16: Chapter 1  Topics

16Fall 2008 ACS-1903

Computer Systems: SoftwareOperating Systems

• A single tasking operating system is capable of running only one program at a time.

• DOS

• A multitasking operating system is capable of running multiple programs at once.

• Windows

• Unix

• Apple

Page 17: Chapter 1  Topics

17Fall 2008 ACS-1903

Computer Systems: SoftwareApplication Software

• Application software refers to programs that make the computer useful to the user.

• Application software provides a more specialized type of environment for the user to work in.

• Common application software:

• Spreadsheets• Word processors• Accounting software• Tax software• Games

Page 18: Chapter 1  Topics

18Fall 2008 ACS-1903

Programming Languages

• A program is a set of instructions a computer follows in order to perform a task.

• A programming language is a special language used to write computer programs.

• A computer program is a set of instructions that enable the computer to solve a problem or perform a task.

Page 19: Chapter 1  Topics

19Fall 2008 ACS-1903

Programming LanguagesCommon Language Elements

• There are some concepts that are common to virtually all programming languages.

• Common concepts:

• Key words

• Operators

• Punctuation

• Programmer-defined identifiers

• Strict syntactic rules.

Page 20: Chapter 1  Topics

20Fall 2008 ACS-1903

Programming LanguagesSample Program

public class HelloWorld

{

public static void main(String[] args)

{

String message = "Hello World";

System.out.println(message);

}

}

The following Java program displays a message. Let’s discuss it, compile it, and run it using BlueJ

Page 21: Chapter 1  Topics

21Fall 2008 ACS-1903

Programming LanguagesSample Program

• Keywords in the sample program are:

• Keywords are lower case (Java is a case sensitive language).

• Keywords cannot be used as a programmer-defined identifiers.

•public

•class

•static

•void

•string String is not really a key word but is the name of a predefined class in Java.

Page 22: Chapter 1  Topics

22Fall 2008 ACS-1903

Programming Languages

• Some Java key words have no meaning but are reserved to prevent their use. (ex. goto, const, include)

• Semi-colons are used to end Java statements.

• Part of learning Java is to learn where to properly use the punctuation.

Page 23: Chapter 1  Topics

23Fall 2008 ACS-1903

Programming LanguagesLines vs Statements

• There is a difference between lines and statements when discussing source code.

System.out.println(

message);

• This is one Java statement written using two lines.

• A statement is a complete Java instruction that causes the computer to perform an action.

Page 24: Chapter 1  Topics

24Fall 2008 ACS-1903

Programming LanguagesVariables

• Information in a Java program is stored in memory.

• Variable names represent a location in memory.

• Variables in Java are sometimes called fields.

• Variables are created by the programmer who assigns it a programmer-defined identifier.

ex: int hours = 40;• In this example, the variable hours is created as an integer

(more on this later) and assigned the value 40.

Page 25: Chapter 1  Topics

25Fall 2008 ACS-1903

Programming LanguagesVariables

• Variables are simply a name given to represent a place in memory.

0x0000x0010x0020x0030x0040x0050x0060x007

Page 26: Chapter 1  Topics

26Fall 2008 ACS-1903

Programming LanguagesVariables

0x0000x0010x0020x0030x0040x0050x0060x007

The Java VirtualMachine (JVM)actually decideswhere the valuewill be placedin memory.

72

Assume that the thisvariable declarationhas been made.

int length = 72;

The variable length is a symbolic namefor the memorylocation 0x003.

Page 27: Chapter 1  Topics

27Fall 2008 ACS-1903

The Compiler and the Java Virtual Machine

• A programmer writes Java programming statements for a program.

• These statements are known as source code.

• A text editor is used to edit and save a Java source code file.

• Source code files have a .java file extension.

• A compiler is a program that translates source code into an executable form.

Page 28: Chapter 1  Topics

28Fall 2008 ACS-1903

The Compiler and the Java Virtual Machine

• A compiler is run using a source code file as input.

• Syntax errors that may be in the program will be discovered during compilation.

• Syntax errors are mistakes that the programmer has made that violate the rules of the programming language.

• The compiler creates another file that holds the translated instructions.

Page 29: Chapter 1  Topics

29Fall 2008 ACS-1903

The Compiler and the Java Virtual Machine

• Most compilers translate source code into executable files containing machine code.

• The Java compiler translates a Java source file into a file that contains byte code instructions.

• Byte code instructions are the machine language of the Java Virtual Machine (JVM) and cannot be directly executed directly by the CPU.

Page 30: Chapter 1  Topics

30Fall 2008 ACS-1903

The Compiler and the Java Virtual Machine

• Byte code files end with the .class file extension.

• The JVM is a program that emulates a micro-processor.

• The JVM executes instructions as they are read.

• JVM is often called an interpreter.

• Java is often referred to as an interpreted language.

Page 31: Chapter 1  Topics

31Fall 2008 ACS-1903

Program Development Process

Text editor Source code(.java)

Saves Java statements

Java compiler

Is read by

Byte code(.class)

Produces

JavaVirtual

Machine

Is interpreted by

ProgramExecution

Results in

Page 32: Chapter 1  Topics

32Fall 2008 ACS-1903

Portability

• Portable means that a program may be written on one type of computer and then run on a wide variety of computers, with little or no modification.

• Java byte code runs on the JVM and not on any particular CPU; therefore, compiled Java programs are highly portable.

• JVMs exist on many platforms:

•Unix•BSD•Etc.

•Windows•Macintosh•Linux

Page 33: Chapter 1  Topics

33Fall 2008 ACS-1903

Portability

• With most programming languages, portability is achieved by compiling a program for each CPU it will run on.

• Java provides an JVM for each platform so that programmers do not have to recompile for different platforms.

Page 34: Chapter 1  Topics

34Fall 2008 ACS-1903

Portability

Java VirtualMachine for Windows

Byte code(.class)

Java VirtualMachine for Linux

Java VirtualMachine for Macintosh

Java VirtualMachine for Unix

Page 35: Chapter 1  Topics

35Fall 2008 ACS-1903

Java Versions

• Java began at version 1.0 and is now at version 5.0 (Sun skipped from 1.4 to 5.0).

• With the advent of version 1.2, Java became Java2 because it provided much more functionality.

• Java2 version 5.0 can still compile Java 1.0 programs as long as no features of any other version of Java are present.

• This is called backwards compatibility.

Page 36: Chapter 1  Topics

36Fall 2008 ACS-1903

Java Versions

• Java began as the Java Development Kit (JDK).

• With the advent of Java2, through version 1.4 it changed to the Java Software Development Kit (SDK)

• In Java 5, JDK is back

• There are different editions of Java:

• J2SE - Java2 Standard Edition.• J2EE - Java2 Enterprise Edition.• J2ME - Java2 Micro Edition.

• The CD from the text has a JDK that can be installed on your computer (if necessary)

Page 37: Chapter 1  Topics

37Fall 2008 ACS-1903

Compiling a Java Program

• The Java compiler is a command line utility.

• The command to compile a program is:

javac –source 1.5 filename.java• javac is the Java compiler.

• The .java file extension must be used.

Example: To compile a java source code file named Payroll.java you would use the command:

javac –source 1.5 Payroll.java

Note: we will be using BlueJ

BlueJ is an integrated development environment (IDE)

BlueJ is used in lectures

Learning to use BlueJ is part of Lab 1