
11.8 Programming Activity 2: Reading Objects from a File 793
object, the code executes the catch block for the EOFException, then the
finally block.
11.8 Programming Activity 2: Reading Objects from a File
In this activity, you will read objects from a file and perform this activity:
Read an object file containing bank account transaction objects. Loop through all
the objects and calculate the new balance of the bank account. Assume that we do
not know the number of transaction items, that is, objects, in the file.
Notice that this activity is identical to Programming Activity 1, except that
the transactions you will read are stored in the file as objects. ...