CS 231: Introduction to Programming
Lab 4: Using Classes to Structure Your Code

Assigned: Mon 7 Feb 2000
Due: Mon 14 Feb 2000

We return to object-oriented programming in this lab (to the sound of much applause, I'm sure!); we will have one more lab with a calculational flavor (Hisses? Boo's?) before we settle into a "programming-centered" mode for the rest of the semester.

More specifically, in this lab we will start to use objects as a mechanism to organize our code. The basic ideas behind objects will be covered in lecture to support this; you should also read the Wu text, Chapter 1, if you haven't done so already.

Contents


Basic instructions

In order to fulfill the assignment, you should write a Java applet, just as in Lab 2, which stick figures on the screen. This time around, however, you are requiredto organize your code in terms of objects and classes (well, at least one class, anyway). I will of course examine your code during your demo in order to verify this structure, but I will also arrange the demo so as to test how easily you can modify your program to produce different specific drawings.

The basic class you will create can be called "Figure", "StickFigure" or "Person" (note that the initial capital letter is required). Each object of this class will represent an individual person (abstractly) or a stick figure on the screen (more concretely, if phosphorescing pixels can be called "concrete"). You will create new objects (figures) dynamically using the new construct (see lecture or the Wu text). This will allow you to easily create multiple figures on the screen.

Each figure or person should come equipped with some basic descriptive information (corresponding to instance variables) and some basic capabilities (corresponding to methods). For the purposes of the assignment, these should include at least the following (feel free to add more once you have the basic assignment done):

In order to demonstrate your program, you will need a context in which to create a few stick figures and draw them on the screen. You can either use the standard paint method directly, or define another method which is more specific to this purpose. In the first case, you will write lines of code directly into the paint method which create and then draw each of the figures; in the second case, these lines would be in a separate method, which you would then call from the paint method. (Either approach is OK, but the second one is a bit "cleaner" as a design, since it separates the painting step from the "create and draw" step: clearly the two are related, but perhaps they should not be identical.)

Your demo code should create and draw at least 3 figures, with names and ages, at least one of which should be under age 18. By way of example, you might draw the following picture:


Tips and hints


What to expect for your demo

You should have your program complete and ready to go by the time you ask for a demo. You should also bring a completed demo form (I will pass out another copy before the due date).

As I mentioned above, I will be asking you to make some modifications to your program "on the fly" in order to test your understanding of the use of classes, objects and methods. You should be prepared for this. Also, with this program, more of the categories for points listed on the left of the demo form are becoming relevant, so you may wish to re-read them. Please ask me if you have any questions about what the point categories mean.