*OBJECT ORIENTED PROGRAMMING*
JAVA PROGRAMMING
GOAL: will be able to throw and catch exceptions and create
multi-threaded programs.
Part I
Create a class called Animal that implements the Runnable
interface.
In the main method create 2 instances of the Animal class, one
called rabbit and one called turtle. Make them "user" threads, as
opposed to daemon threads.
Some detail about the Animal class. It has instance variables,
name, position, speed, and restMax. It has a static boolean winner.
It starts...