Chapter 2—Programming by Example

Download Report

Transcript Chapter 2—Programming by Example

The Art and Science of
ERIC S. ROBERTS
CHAPTER 2
Programming by Example
Example is always more efficacious than precept.
—Samuel Johnson, Rasselas, 1759
2.1
2.2
2.3
2.4
2.5
2.6
The “Hello world” program
Perspectives on the programming process
A program to add two numbers
Programming idioms and patterns
Classes and objects
Graphical programs
Java
An Introduction
to Computer Science
The “Hello World” Program
One of the important influences on the
design of Java was the C programming
language, which was developed at Bell
Labs in the early 1970s. The primary
reference manual for C was written by
Brian Kernighan and Dennis Ritchie.
On the first page of their book, the
authors suggest that the first step in
learning any language is to write a
simple program that prints the message
“hello, world” on the display. That
advice remains sound today.
1.1 Getting Started
The only way to learn a new programming
language is to write programs in it. The first
program to write is the same for all languages:
Print the words
hello, world
This is the big hurdle; to leap over it you have to
be able to create the program text somewhere,
compile it, load it, run it, and find out where your
output went. With these mechanical details
mastered, everything else is comparatively easy.
In C, the program to print “hello, world” is
#include <stdio.h>
main() {
printf("hello, world");
}
The “Hello World” Program in Java
This
The
next
last
first
few
slide
few
lines
simulates
lines
in
(everything
the
file
operation
define
between
the
of
HelloProgram
HelloProgram
/*
and
*/
are
so
class,
that
an
A Java
In
class
Java,
object
arguments
simple
method
definition
objects
two
to“Hello
be
lines
consists
supply
are
added
increated
are
World”
Java
information
is
the
ofthe
indicated
atypically
by
imports,
series
example
using
of
by
that
acontains
which
statements.
constructor,
illustrates
supplying
the
indicate
constructor
a series
several
anwhich
Here,
argument
what
of)needs
the
consists
features
entries.
library
only
to
which
This
statement
the
of
add
example
keyword
the
method.
is
extends
has
call
new
Here,
one
toof
followed
keyword
add
entry,
the
,which
which
argument
which
by
identifies
the
ison
class
aiswill
an
method
aasobject
new
name
adisplay.
GraphicsProgram
GLabel
called
to
and
thearguments.
run
display.
object.
.
.
thatthe
example
packages
make
you
are
can
the
common
get
of
object,
the
aaaprogram
comment,
sense
such
to
the
as
uses.
what
programs
the
appears
string
isadds
you
intended
to
display
the
see
for
and
in
human
this
the
book.
coordinates.
readers.
/*
* File: HelloProgram.java
* ----------------------* This program displays "hello, world" on the screen.
* It is inspired by the first program in Brian
* Kernighan and Dennis Ritchie's classic book,
* The C Programming Language.
*/
import acm.graphics.*;
import acm.program.*;
public class HelloProgram extends GraphicsProgram {
public void run() {
add( new GLabel( "hello, world", 100, 75 ) );
}
}
The “Hello World” Program in Java
import acm.graphics.*;
import acm.program.*;
public class HelloProgram extends GraphicsProgram {
public void run() {
add( new GLabel("hello, world", 100, 75) );
}
}
HelloProgram
hello, world
Perspectives on the Programming Process
In his Pulitzer-prizewinning book, computer
scientist Douglas Hofstadter identifies two
concepts—holism and reductionism—that turn
out to be important as you begin to learn about
programming.
Hofstadter explains these concepts in the form of
a dialogue in the style of Lewis Carroll:
Achilles: I will be glad to indulge both of you, if you will first oblige me, by telling me the
meaning of these strange expressions, “holism” and “reductionism”.
Crab:
Holism is the most natural thing in the world to grasp. It’s simply the belief that
“the whole is greater than the sum of its parts”. No one in his right mind could
reject holism.
Anteater: Reductionism is the most natural thing in the world to grasp. It’s simply the belief
that “a whole can be understood completely if you understand its parts, and the
nature of their ‘sum’”. No one in her left brain could reject reductionism.
A Program to Add Two Numbers
Thisyou
As
program
saw
in
isanimates
an
theexample
case
of
the
a ConsoleProgram
HelloProgram
,values
which
reads
Java
The
next
final
holistic
first
statement
two
slide
statement
perspective
statements
computes
in
the
the
the
read
isof
run
program
particularly
operation
the
method
sum
input
prints
of
by
displays
values
useful
this
adding
a message
program
from
when
the
theexample,
result.
the
you
to
touser,
illustrate
the
are
In
stored
each
user
first
this
programs
in
statement,
the
variables
the
operator
n1
using
and
signifies
n2
the
.does.
acm.program
In look
this
concatenation,
package
the
which
+begin
operator
consists
by
learning
input
describing
of
the
which
assignment
from
toiswritten
what
program.
the
a +whole
of
keyboard
the
values
program
number,
When
to
and
variables.
you
displays
which
isstatement,
at
characters
more
a program,
formally
on you
the
called
screen.
should
an
executing
the
in
theare
method.
concentrate
Such
integer.
represents
of
combining
programs
The
addition,
onstatements
the
understanding
input
are
operands
as
not
values
inas
standard
together
exciting
itsrun
operation
stored
mathematics.
as
as strings.
graphical
ininmemory
a general
applications
cells
way called
rather
but
thanuseful
are
variables
focusing
that
for illustrating
serve
on as
theplaceholders
programming
details. Consider,
for concepts.
those values.
for example, the
following program, which adds two integers and prints their sum:
import acm.program.*;
public class Add2Integers extends ConsoleProgram {
public void run() {
println("This program adds two numbers.");
int n1 = readInt("Enter n1: ");
int n2 = readInt("Enter n2: ");
int total = n1 + n2;
println("The total is " + total + ".");
}
}
The Add2Integers Program
class Add2Integers extends ConsoleProgram {
public void run() {
println("This program adds two numbers.");
int n1 = readInt("Enter n1: ");
int n2 = readInt("Enter n2: ");
int total = n1 + n2;
println("The total is " + total + ".");
}
}
n1
n2
total
17
25
42
17
42
25
Add2Integers
This program adds two numbers.
Enter n1: 17
Enter n2: 25
The total is 42.
Programming Idioms and Patterns
• Experienced programmers also often take a holistic approach
to programming. Effective programmers can recognize a
variety of common operations and have learned a standard
solution strategy for each one. The code that implements
such a solution strategy is called a programming idiom or
programming pattern. Learning to use these patterns saves
you from having to think about the nitty-gritty details.
• As an example, it is important to think of a statement like
int n1 = readInt("Enter n1: ");
not in terms of what each part of the statement means, but
rather as a holistic pattern to read an integer from the user:
int variable = readInt("prompt");
Classes and Objects
• As described in the slides for Chapter 1, Java programs are
written as collections of classes, which serve as templates for
individual objects. Each object is an instance of a particular
class, which can serve as a pattern for many different objects.
• Classes in Java form hierarchies. Except for the class named
Object that stands at the top of the hierarchy, every class in
Java is a subclass of some other class, which is called its
superclass. A class can have many subclasses, but each class
has only one superclass.
• A class represents a specialization of its superclass. If you
create an object that is an instance of a class, that object is
also an instance of all other classes in the hierarchy above it
in the superclass chain.
• When you define a new class in Java, that class automatically
inherits the behavior of its superclass.
Biological Models of Class Structure
The structure of Java’s class hierarchy
resembles the biological classification
scheme introduced by Scandinavian
botanist Carl Linnaeus in the 18th century.
Linnaeus’s contribution was to recognize
that organisms fit into a hierarchical
classification scheme in which the
placement of individual species reflects
anatomical similarities.
Carl Linnaeus (1707–1778)
Biological Class Hierarchy
Living Things
Kingdom
Plants
Phylum
Annelida
Order
Animals
Brachiopoda
Crustacea
Class
Family
Arthropoda
Insecta
Fungi
Mollusca
Chordata
Arachnida
Hymenoptera
Classification of the red ant
Iridomyrmex purpureus
Formicidae
Genus
Iridomyrmex
Species
purpureus
Every that
red ant
is also
Note
there
can an
be animal,
many
an arthropod,
an insect,
individual
redand
ants,
each ofas
well
thean
other
superclasses
whichas is
instance
of thein
the chain.
same
basic class.
The Program Hierarchy
Java class hierarchies are similar
to the biological class hierarchy
from the previous slide. This
diagram, for example, shows the
hierarchy formed by the classes
in the acm.program package.
Applet
JApplet
Every ConsoleProgram is also
a Program, a JApplet, and an
Applet. That means that every
ConsoleProgram can run as an
applet on the web. The same is
true for any DialogProgram or
GraphicsProgram.
Program
ConsoleProgram
DialogProgram
GraphicsProgram
The DialogProgram Class
In object-oriented languages like Java, a class definition specifies
the behavior of objects of that class. The DialogProgram
class has exactly the same operations as the ConsoleProgram
class; the only difference is that the input and output operations
use popup dialogs instead of a console, as illustrated by the
following implementation of AddTwoIntegers:
public class Add2Integers extends DialogProgram {
public void run() {
println("This program adds two numbers.");
int n1 = readInt("Enter n1: ");
int n2 = readInt("Enter n2: ");
int total = n1 + n2;
println("The total is " + total + ".");
}
}
Graphical Programs
• The GraphicsProgram class makes it possible to create
simple pictures on the screen. The conceptual model is that
of a collage composed of objects on a canvas.
• Running a GraphicsProgram creates a window that serves
as the background canvas for the collage. You create pictures
by creating graphical objects of various kinds and then adding
those objects to the canvas.
• In this chapter, you will learn how to work with labels,
rectangles, ovals, and lines using the classes GLabel, GRect,
GOval, and GLine. The complete set of graphics classes is
introduced in Chapter 9.
Sending Messages to Objects
• In many applications, you will need to change the appearance
of a graphical object after you have created it. For example,
you might want to have the object change its color or move to
a new position on the canvas.
• In object-oriented languages like Java, such changes are the
responsibility of the object. To change the color of an object
you send a message to the object asking it to change color.
• Java uses the following syntax to send a message to an object:
receiver.name(arguments);
where receiver is the object to which the message is directed,
name identifies the type of message, and arguments is a list
of values used to specify any other information associated
with the message.
Sending Messages to a GLabel
The following program illustrates sending a message to an object.
Note that the label doesn’t appear until it is added to the canvas.
public class HelloProgram extends GraphicsProgram {
public void run() {
GLabel label = new GLabel("hello, world", 100, 75);
label.setFont("SansSerif-36");
label.setColor(Color.RED);
add(label);
}
label
}
hello, world
hello, world
HelloProgram
hello, world
skip simulation
The Java Coordinate System
• Positions and distances in a graphics program are measured in
terms of pixels, which are the individual dots that cover the
screen.
• Unlike traditional mathematics, Java defines the origin of the
coordinate system to be in the upper left corner. Values for
the x coordinate increase as you move rightward across the
screen; y coordinate values increase as you move downward.
• Creating a JLabel at a particular x and y position means that
the baseline of the first character in the label appears at that
point, as follows:
HelloProgram
(100, 75)
Hello
The GObject Hierarchy
The classes that represent graphical objects form a hierarchy, part
of which looks like this:
GObject
GLabel
GRect
GOval
GLine
The GObject
class represents
the defined
collection
of alllevel
graphical
Operations
on graphical
objects are
at each
of the
objects. TheOperations
four subclasses
to
hierarchy.
that shown
apply in
to this
all diagram
graphicalcorrespond
objects are
specified
the GObject
level,
where
they are inherited
bylines.
each
particular attypes
of objects:
labels,
rectangles,
ovals, and
The class diagram
makes
cleartothat
any GLabel
, GRect
subclass.
Operations
that itapply
a particular
subclass
are,
GOval
, orasGLine
also
a GObject
. class.
specified
part ofisthe
definition
of that
Operations on the GObject Class
The following operations apply to all GObjects:
object.setColor(color)
Sets the color of the object to the specified color constant.
object.setLocation(x, y)
Changes the location of the object to the point (x, y).
object.move(dx, dy)
Moves the object on the screen by adding dx and dy to its current coordinates.
The standard color names are defined in the java.awt package:
Color.BLACK
Color.DARK_GRAY
Color.GRAY
Color.LIGHT_GRAY
Color.WHITE
Color.RED
Color.YELLOW
Color.GREEN
Color.CYAN
Color.BLUE
Color.MAGENTA
Color.ORANGE
Color.PINK
Operations on the GLabel Class
Constructor
new GLabel(text, x, y)
Creates a label containing the specified text that begins at the point (x, y).
Methods specific to the GLabel class
label.setFont( font)
Sets the font used to display the label as specified by the font string.
The font is typically specified as a string in the form
"family-style-size"
where
family is the name of a font family
style is either PLAIN, BOLD, ITALIC, or BOLDITALIC
size is an integer indicating the point size
Drawing Geometrical Objects
Constructors
new GRect( x, y, width, height)
Creates a rectangle whose upper left corner is at (x, y) of the specified size.
new GOval( x, y, width, height)
Creates an oval that fits inside the rectangle with the same dimensions.
new GLine( x0, y0, x1, y1)
Creates a line extending from (x0, y0) to (x1, y1).
Methods shared by the GRect and GOval classes
object.setFilled( fill)
If fill is true, fills in the interior of the object; if false, shows only the outline.
object.setFillColor( color)
Sets the color used to fill the interior, which can be different from the border.
The GRectPlusGOval Program
public class GRectPlusGOval extends GraphicsProgram {
public void run() {
GRect rect = new GRect(100, 50, 125, 60);
rect.setFilled(true);
rect.setColor(Color.RED);
add(rect);
GOval oval = new GOval(100, 50, 125, 60);
oval.setFilled(true);
oval.setFillColor(Color.GREEN);
add(oval);
rect
oval
}
}
GRectPlusGOval
skip simulation
The End