67
Chapter 1 Introduction to Computer and Java 1

Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

Embed Size (px)

Citation preview

Page 1: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

1

Chapter 1Introduction to Computer and Java

Page 2: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

2

Contents

1. Introduction2. Why Program?3. Computer Systems: Hardware and

Software 4. Programming Languages5. What is a Program Made of?6. The Programming Process7. Object-Oriented Programming

Page 3: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

3

1. Introduction

Programming using Java Java

A powerful programming language Runs on every type of computer To create large or small applications

Page 4: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

4

2. Why Program?

Computer is a tool used by so many professions.

Computers can do many different jobs because they are programmable.

Computers are designed to do whatever job their programs, or software, tell them to do.

Page 5: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

5

2. Why Program? (Cont’d) Computer programmers:

Create software Some things must be designed for computer

program: The logical flow of the instructions The mathematical procedures The layout of the programming statements The appearance of the screens The way information is presented to the user The program’s ‘user friendliness’ Manuals, help system, and/or other written

documentation

Page 6: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

6

3. Computer Systems All computer systems consist of similar

hardware devices and software components. Hardware

Refers to the physical components that a computer made of.

A typical computer system consists of: The central processing unit (CPU) Main memory Secondary storage devices Input devices Output devices

Page 7: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

7

Hardware

Page 8: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

8

Hardware (Cont’d)

Central Processing Unit (CPU) CPU’s job:

Fetch instructions Follow the instructions Produce some resulting data

Consists of two parts: Control unit:

coordinates all of the computer’s operation Arithmetic and logic unit (ALU)

performs mathematical operations

Page 9: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

9

CPU (Cont’d) A program is a sequence of

instructions stored in the computer’s memory.

When a computer is running a program, the CPU is engaged in a process known as fetch/decode/execute cycle.

Fetch CPU fetches, from main memory, the next

instruction in the sequence of program instruction

Page 10: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

10

CPU (Cont’d) Decode

The instruction is encoded in the form of a number. The control unit decodes the instruction and generates an electronic signal.

Execute The signal is routed to the appropriate

component of the computer. The signal causes the component to perform an operation.

Page 11: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

11

Memory Main memory is commonly known as

random access memory (RAM) RAM is the computer’s main memory that

holds information: the sequences of instructions in the programs that

are running the data those program are using

RAM is usually a volatile type of memory is used only for temporary storage When the computer is turned off, the contents of

RAM are erased.

Page 12: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

12

Memory (Cont’d)

Memory is divided into sections. Each section (cell) of memory

is assigned a unique number known as an address.

is a collection of eight bits, is known as a byte.

Bit (binary digit): 0 or 1

Byte: 8 bits

Page 13: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

13

Memory (Cont’d)

Page 14: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

14

Secondary Storage

Secondary storage is a type of memory Can hold data for long periods of time – even

when there is no power to the computer Programs are usually stored in secondary

memory and loaded into main memory when they are running.

Disk drives Hard disk drive , floppy disk drive, USB drive

Optical drives Compact disc (CD), Digital versatile disc (DVD), …

Page 15: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

15

Input Devices

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

The device that collects the data and sends it to the computer is called an input device.

Keyboard, mouse, scanner, digital camera, …

Disk drives and optical drives can be considered input devices

Page 16: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

16

Output Devices

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

Common output devices are monitors, printers.

Disk drives and CD recorder can also be considered output devices.

Page 17: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

17

Software

Software refers to the programs that run on a computer

Operating system: is a set of programs that manages the hardware and control their processes.

Application software: refers to programs that make the computer useful to the user such as word processing, spreadsheet, database packages, …

Page 18: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

18

4. Programming Languages

What Is a Program? 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

Page 19: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

19

What Is a Program?

Suppose we want the computer to calculate someone’s gross pay.

The following is a list of things the computer should do to perform the task:

1. Display a message on the screen: “How many hours did you work?”

2. Allow user to enter the number of hours worked.

3. Once the user enters a number, store it in memory.

Page 20: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

20

What Is a Program? (Cont’d)

4. Display a message on the screen: “How much do you get paid per hour?”

5. Allow the user to enter an hourly pay rate. 6. Once the user enters a number, store it in

memory. 7. Once both the number of hours worked

and the hourly pay rate are entered, multiply the two numbers and store the result in memory.

8. Display a message on the screen that shows the amount of money earned.

Page 21: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

21

What Is a Program? (Cont’d)

These instructions are called an algorithm.

A set of well-defined steps for performing a task or solving a problem.

These steps are sequentially ordered.

Page 22: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

22

What Is a Program? (Cont’d)

CPU can only process instructions that are written in machine language (numbers).

Programming languages, which use words instead of number, were invented to ease the task of programming.

Page 23: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

23

What Is a Program? (Cont’d)

Some well-known programming languages:

BASIC FORTRAN COBOLPascal C C++C# Java JavaScriptPerl Python RubyVisual Basic

Page 24: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

24

A History of Java

In June 1991, a team was formed at Sun Microsystems. It was named the Green Team.

The first project was to develop a hand-held device named *7 that could be used to control a variety of home entertainment devices.

It had to use a programming language that could be processed by all the devices.

Page 25: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

25

A History of Java (Cont’d)

Jame Gosling, the team’s lead engineer, created a programming language, which was named Oak. Then, it was renamed Java.

The team used it to develop a Web browser HotJava:

was able to download and run small Java programs known as applets.

Page 26: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

26

Java Application and Applets

There are two types of programs that may be created with Java:

Application: is a stand-alone program that runs on your computer

Applet: is designed to be transmitted over the Internet from a Web server, and then executed in a Web browser.

Page 27: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

27

5. What Is a Program Made of?

There are certain elements that are common to all programming languages.

Language Elements Key Words, Operators,

Punctuation, Programmer-Defined Names, Syntax

Page 28: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

28

Language Elements

Key Words (Reserved Words) (Table 1-3) Have a special meaning Used for their intended purpose only

Operators Are symbols or words that perform operator

on one or more oparands. Punctuation

Serve specific purposes, such as marking the beginning or ending of a statement, or separating items in a list.

Page 29: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

29

Language Elements (Cont’d)

Programmer-Defined Names Defined by the programmer. Used to identify storage locations in

memory and parts of the program. Usually called identifiers.

Syntax Rules that be followed when writing a

program.

Page 30: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

30

Language Elements (Cont’d)

Code listing 1-1 Payroll.java1. public class Payroll2. {3. public static void main(String[] args)4. {5. int hours = 40;6. double grossPay, payRate = 25.0;7. 8. grossPay = hours * payRate;9. System.out.println(“Your gross pay is $” + grossPay);10. }11. }

Page 31: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

31

Lines and Statements

Line A program contains lines of codes. Some lines are empty → to make a

program more readable Statement

a complete instruction that causes the computer to perform some action.

This statement causes the computer to display a message on the screen.

System.out.println(“Your gross pay is $” + grossPay);

Page 32: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

32

Variables

Variables are used to store an item of data in memory.

A variable is a named storage location in the computer’s memory.

Variables are symbolic names made up by programmer that represent locations in the computer’s memory.

hours, grossPay, payRate are variables

Page 33: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

33

The Compiler and the Java Virtual Machine

A Java program is typed into the computer and saved to a file using a text editor.

A Java programming statements written by the programmer are called source code.

The file is called a source file, and the filename ends with the .java extension,

e.g. Payroll.java

Page 34: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

34

The Compiler and the Java Virtual Machine (Cont’d)

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

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

These errors must be corrected before the compiler can translate the source code.

Page 35: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

35

The Compiler and the Java Virtual Machine (Cont’d)

Most programming language compilers (e.g. C/C++ compilers) translate source code directly into files that contains machine language instructions. These files are called executable files.

Page 36: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

36

The Compiler and the Java Virtual Machine (Cont’d)

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

Byte code filename ends with .class extension. Byte code instructions are not machine

language, and cannot be directly executed by the CPU.

To execute the byte code file, we use the Java Virtual Machine (JVM).

Page 37: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

37

The Compiler and the Java Virtual Machine (Cont’d)

JVM reads Java byte code instructions and executes them.

JVM is often called an interpreter, and Java is often referred to as an interpreted language.

Page 38: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

38

Program Development Process

Page 39: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

39

Portability

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

Java byte code is the same on all computers: highly portable

Java byte code may be run on any computer that has a Java Virtual Machine.

Page 40: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

40

Portability (Cont’d)

Java byte code may be run on any computer with Java Virtual Machine.

Page 41: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

41

Java Software Editions

The software that we use to create Java programs is referred to as the JDK (Java Development Kit) or the SDK (Software Development Kit).

Editions of the JDK: Java SE OO The Java Standard Edition

provides all the essential software tools necessary for writing Java applications and applets

Page 42: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

42

Java Software Editions (Cont’d)

Java EE OO The Java Enterprise Edition provides tools for creating large business applications that employ servers and provide services over the Web.

Java ME OO The Java Micro Edition provides a small, highly optimized runtime environment for consumer products such as cell phones, pagers, and appliances.

Page 44: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

44

Compiling and Running a Java Program (Cont’d)

Installing Java SE 6 Update RC 10 Run jdk-6u10-rc2-bin-b32-windows-

i586-p-12_sep_2008.exe

Page 45: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

45

Compiling and Running a Java Program (Cont’d)

Compiling the Java source file Payroll.java in the folder c:\PF1\Chapter1\Payroll

Make sure we are in the folder c:\PF1\Chapter1\Payroll :

cd c:\PF1\Chapter1\Payroll\ Run the javac.exe to compile the file

Payroll.javajavac filename (filename with extension .java)

Page 46: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

46

Compiling and Running a Java Program (Cont’d)

javac Payroll.java

Javac will create the Java byte code file Payroll.class

Page 47: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

47

Compiling and Running a Java Program (Cont’d)

Running the Java byte code file Run the file java.exe

java ClassFilename (class filename without extension .class)java Payroll

Page 48: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

48

Integrated Development Environments

Java integrated development environments (IDEs) consist of

Text editor Compiler Debugger Other utilities

Download Eclipse IDE for Java Developers eclipse-java-ganymede-win32.zip athttp://www.eclipse.org/downloads/

Page 49: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

49

Integrated Development Environments (Cont’d)

Unzip and run Eclipse.exe Create a new Java project:

File New Java Project Enter the project name Choose some options Finish

Create a new class File New Class

Enter the class name Choosing some options Finish

Page 50: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

50

6. Programming Process

The programming Process consists of several steps, which include design, creation, test, and debugging activities.

The following steps help you in writing programs

1. Clearly define what the program is to do 2. Visualize the program running on the

computer

Page 51: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

51

6. Programming Process (Cont’d)

3. Use design tools to create a model of the program.

4. Check the model for logical errors. 5. Enter the code and compile it. 6. Correct any errors found during

compilation. Repeat Steps 5 and 6 as many times as necessary.

7. Run the program with test data for input.

Page 52: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

52

6. Programming Process (Cont’d)

8. Correct any running errors found while running the program. Repeat Steps 5 to 8 as many times as necessary.

9. Validate the results of the program.

Page 53: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

53

Calculate the user’s gross pay

1. Clearly define what the program is to do

Purpose To calculate the user’s gross pay Input Number of hours worked,

hourly pay rate Process Multiply number of hours

worked by hourly pay rate. The result is the gross pay.

Output Display a message indicating the user’s gross pay.

Page 54: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

54

Calculate the user’s gross pay (Cont’d)

2. Visualize the program running on the computer

First create it in your mind. Imagine what the computer screen

will look like while the program is running.

Page 55: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

55

Calculate the user’s gross pay (Cont’d)

3. Use design tools to create a model of the program

Use one or more design tools to create a model of the program.

For example, pseudocode is a cross between human language and a

programming language is helpful when designing an algorithm Looks more like commands than English

statements

Page 56: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

56

Calculate the user’s gross pay (Cont’d)

Pseudocode describes the pay-calculating algorithm

Get payroll data Calculate gross pay Display gross pay

Page 57: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

57

Calculate the user’s gross pay (Cont’d)

A more detailed pseudocode Display “How many hours did you work?”. Input hours. Display “How much do you get paid per

hour?”. Input rate. Calculate the gross pay by multiplying

two numbers, and store the result to the pay variable

Display the value in the pay variable

Page 58: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

58

Calculate the user’s gross pay (Cont’d)

4. Check the model for logical errors

Logical errors mistakes that cause the program to produce erroneous results.

Once a model of the program is assembled, it should be checked for these errors.

If pseudocode is used, the programmer should trace through it, checking the logic of each step.

Page 59: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

59

Calculate the user’s gross pay (Cont’d)

5. Enter the code and compile it Once a model of the program has been

created, checked, and corrected, the programmer is ready to write source code on the computer.

The programmer saves the source code to a file and begin the process of compiling it.

During this step the compiler will find any syntax errors that may exist in the program.

Page 60: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

60

Calculate the user’s gross pay (Cont’d)

6. Correct any errors found during compilation. Repeat Steps 5 and 6 as many times as necessary.

If the compiler reports any errors, they must be corrected. Steps 5 and 6 must be repeated until the program is free of compile-time error.

Page 61: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

61

Calculate the user’s gross pay (Cont’d)

7. Run the program with test data for input

Run-time error is an error that occurs while the program is running. These are usually logical errors.

Testing for run-time errors requires that the program must be executed with samples data or sample input.

Page 62: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

62

Calculate the user’s gross pay (Cont’d)

8. Correct any running errors found while running the program. Repeat Steps 5 to 8 as many times as necessary

When runtime-errors are found in a program, they must be corrected.

9. Validate the results of the program Enter test data and determine if the

program solves the original problem.

Page 63: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

63

7. Object-Oriented Programming

Java is an object-oriented programming (OOP) language. OOP is a method of software development that has its own practices, concepts, and vocabulary.

There are two primarily methods of programming in use today:

Procedural Object-oriented

Page 64: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

64

7. Object-Oriented Programming (Cont’d) Procedural Approach

Procedure is a set of programming statements that, together, perform a task.

Procedures typically operate on data items that separate from the procedure.

In a procedural program, data items are commonly passed from one procedure to another.

The focus of procedural programming is on the creation of procedures that operate on the program’s data.

The separation of data and the code that operates on the data often leads to problems

Page 65: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

65

7. Object-Oriented Programming (Cont’d)

Object-Oriented Approach OOP is centered on creating objects. An object is a software entity that contains

data and procedures Data contained in an object is known as the

object’s attributes. The procedures, or behaviors, that an object

performs are known as the object’s methods. The object is, conceptually, a self-contained

unit consisting of data (attributes) and procedures (methods).

Page 66: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

66

7. Object-Oriented Programming (Cont’d)

Page 67: Chapter 1 Introduction to Computer and Java 1. Contents 1.Introduction 2.Why Program? 3.Computer Systems: Hardware and Software 4.Programming Languages

67

7. Object-Oriented Programming (Cont’d)

Encapsulation refers to the combining of data and code into

a single object. Data Hiding

refers to an object’s ability to hide its data from code that is outside the object.

Only the object’s methods may directly access and make changes to the object’s data.

An object typically hides its data, but allows outside code to access the methods that operate on the data.