some code samples, various examples of simple modeling ideas and some minor algorithms.
Kristofer Younger 96a68137ac Update 'README.md' 6 年前
.gitignore ye olde code 1 6 年前
Account.java ye olde code 1 6 年前
AccountException.java ye olde code 1 6 年前
Calendar.java ye olde code 1 6 年前
Calendar1.java ye olde code 1 6 年前
CalendarGraphic.java ye olde code 1 6 年前
Date.java ye olde code 1 6 年前
DateException.java ye olde code 1 6 年前
DepositAccount.java ye olde code 1 6 年前
README.TXT ye olde code 1 6 年前
README.md Update 'README.md' 6 年前
Scrabble.java ye olde code 1 6 年前
Squares.java ye olde code 1 6 年前
TextIO.java ye olde code 1 6 年前
TriangleOne.java ye olde code 1 6 年前
TriangleTwo.java ye olde code 1 6 年前
package.bluej ye olde code 1 6 年前

README.md

Some Code From Long Ago.

Java has been around a long time, and this code proves that point.

Take a look at each class, see how they are linked. They are not all linked together, but each class has something useful for you find.

Scrabble

Take a look at how a case statement is used instead of a whole lot of IF statements. Kind of cool, huh?

Loops

Squares, TriangleOne, & TriangleTwo

Dig around and look at how loops are used, even a nested loop or three. Play around with different parametera to the functions. Run a few.

Calendar

Look at how the logic allows for various calendar operations. Much of this you can rely on the Java standard library to use, but the ideas here are good to look at and try to follow.

Run CalendarGraphic, and step through the code used to create the simple window. It uses Java's older AWT library, but does show a little bit of how to display in a window.

Account

Notice how we create an Account object and subclass it in DepositAccount. What does the exception do? why does this seem like a good idea?

TextIO

Read through this class, carefully. See how the developer is trying to simplify Java IO? Do what you find there.

Lab Goals

Write tests for many of these classes (leave OUT TextIO). The more you do, the more points you get.