The goal of this lab is to gain familiarity with writing simple classes.
Change into the appropriate directory, and then clone the repository for this week's lab:
There will be two subdirectories in youhg clone /cslab/class/csci235/lab8
lab8
directory, one
for each part of this lab.
Complex numbers are numbers that have a real part and an imaginary part (factor of square root of -1 or i). Here are some examples of complex numbers:
Some programming languages, such as Fortran, have a primitive complex number type. Java does not. We will write a class for complex numbers (including some operations) in this lab.
Change into the complex
directory in your working copy.
You can look at the file ComplexDriver.java
, which reads a
couple of complex numbers from the keyboard and then prints the result of
several arithmetic operations performed on them.
You will not need to modify this file.
Now look at Complex.java
, This provides you with the
skeleton for a complex number class: the instance variables and
constructor have been provided, but you will need to write the rest of the
methods.
Glance down ComplexDriver
and get a basic feel for what it does.
We input two complex numbers from the user, print them out,
and calculate their sum, product, and quotient.
There are methods to do these operations, but not all of them are
finished.
A. First, implement the method toString()
to make a string representation of a complex number.
Currently it returns "not implemented"
.
If your number has a 3.1 real part and 5.7 imaginary part,
it should produce a string like 3.1+5.7i
.
You should now be able to test your program, verifying that it prints correctly the numbers that were input. Take some care to do reasonable things when either (or both!) of the real or imaginary part is zero.
(You may want to commit this to your repository when you are satisfied that it works correctly.)
B. Now take a look at the plus()
method, and find
the place in ComplexDriver.java
where it is invoked:
answer = comp1.plus(comp2);
This call involves two instances of class Complex
. The
method called belongs to the one on the left of the dot; we often call
this one the receiver of the call. You can think of this call as
sending a message to comp1
asking it, “give me the result of
adding comp2
to yourself.”
You need to fill in the body of plus()
. Note that you
refer to the instance variables of the receiver with unqualified names,
while you refer to the instance variables of the parameter
other
using qualified names, such as other.real
.
C.In similar fashion, complete the methods minus()
,
times()
and dividedBy()
. Do you need a
hint for multiplication?
for division?
Compile and test. (And, probably, commit.)
The second example in the lab is a very different kind of object, one that models a game clock, as for a sporting event. This will give you a feel for the range of things that objects can be used to model or simulate.
Change to its directory by moving up one directory, and then down:
cd .. cd gameclock
First try compiling and running the game clock program.
javac GameClock.java java -cp .:gc.jar GC &
(You don't need to worry right now about what the -cp .:gc.jar
stuff means.)
A window will pop up (yes, this is your first program with a graphical user interface, or GUI) representing the clock. You'll notice that the clock has a current time left, buttons for stopping and starting the clock, for adding seconds, ten seconds, and minutes, and for setting the clock to a specific time.
Try the buttons out. You'll see that, although you can add time to the clock, the button to start it running doesn't work, nor does the button to set the clock to a specific time. You will implement these.
GameClock
classOpen the file GameClock.java
.
You will notice the class has three instance variables:
The time left on the clock (timeLeft
),
the time-of-day when we updated
the time left (lastUpdatedTime
),
and whether or not the clock is currently running
(running
).
Internally we keep time by milliseconds, even though
the clock will display only in seconds.
We also use the long
type instead of
int
, because that is what the Java
method System.currentTimeMillis()
returns.
Look also at the instance methods.
You should notice that the methods correspond to the
buttons on the window.
The GUI component of this program has already been written (it is
hiding in the gc.jar
file)
so that the appropriate methods will be invoked on the object
whenever the user clicks on the buttons.
The methods addSecond()
,
addTenSeconds()
,
and addMinute()
are written for you.
Figure out how they work.
The method getTime()
looks like
it's written, but it's actually incomplete.
Your GameClock
needs to count down at the correct rate
as determined by the system's built-in clock, which you can read by
calling System.currentTimeMillis()
.
The clock works by maintaining a class invariant:
timeLeft
is the time
remaining.
You need to ensure that the instance variables are updated
appropriately when the clock starts or stops, and the method
update()
, called every time the clock is read (in
getTime()
) also maintains the invariant while ensuring
that timeLeft
is correct.
The portion of the program that you cannot see will call
getTime()
many times each second in order to update the
display.
Your job is to:
startStop()
so that it toggles the running
boolean variable
and, when appropriate, records the time.
update()
so that the time left will be
updated correctly when the clock is running.
setTime()
. When the "Set" button is clicked,
the text from the box next to it will be passed (as a string) to
setTime()
. You may assume that the text is an integer
indicating the number of minutes to which to set the clock.
Extra credit: if the string is only an integer, interpret it as minutes; but if the string is an integer, a colon, and another integer (such as "5:15") intrepret it as minutes and seconds. Ignore the input if the string is not in either of those formats.
Compile GameClock.java
, and run the program
as indicated above.
From your lab8
directory, make a typescript as you change
into the complex
directory and run the program. (Don't
forget to end the script.) It doesn't make sense to make a script of the
gameclock program.
Turn in your three files—typescript
,
complex/Complex.java
, and
gameclock/GameClock.java
—electronically
as lab8
.