Assignment Sheet: Lab14_LinkedList.pdf
Starting Project: Lab14_LL_StuDistro.zip
Posted on January 28th, 2009 by Baker Franke
Filed under: Labs | No Comments »
Assignment Sheet: Lab14_LinkedList.pdf
Starting Project: Lab14_LL_StuDistro.zip
Posted on January 28th, 2009 by Baker Franke
Filed under: Labs | No Comments »
Here are notes on Iterators from class in case you weren’t able to transcribe what was on the board.
IN EACH EXAMPLE below, the loop simply prints out the value of each element in the list.
ArrayList<Integer> list = new ArrayList<Integer>();
//fill list with ints
//Old way to iterate, using ArrayList accessor methods:
for(int i=0; i<list.size(); i++){
System.out.println(list.get(i));
}
//Using an Iterator
Iterator [...]
Posted on January 27th, 2009 by Baker Franke
Filed under: Notes | No Comments »
Assignment Sheet: Lab13_OrderedArrayList.pdf
Starting Project: Lab13_OrderedArrayList_StuDistro.zip
MacBeth text: MacBeth.txt
Posted on January 26th, 2009 by Baker Franke
Filed under: Labs | No Comments »
Scholars, you must take the two quizzes (Quiz0 and Quiz1) on the moodle site by Monday, Jan 26.
The link to the site appears in the right-hand column.
Posted on January 21st, 2009 by Baker Franke
Filed under: Homework | No Comments »
Since most of you will be watching the innauguration, class will be a wash.
BUT YOU HAVE TO DO THREE THINGS:
1. Remember that Lab12 is due MEOM tonight.
2. YOU MUST register on the moodle site so you can take the class quizzes.
a. register on the site
b. enroll in the course: ‘APCS 2009′
3. Go to javabat.com
a.) create [...]
Posted on January 20th, 2009 by Baker Franke
Filed under: Notes | No Comments »
Please note that we only have one day of class between today (Jan 13) and the due date, plan accordingly.
Assignment Sheet: Lab12_ImageManip.pdf
Starting Files: Lab12_ImageManip_StuDistro.zip
Sample executable: [coming soon]
Posted on January 13th, 2009 by Baker Franke
Filed under: Labs | No Comments »
Write a version of the Carnival Dice Game using GUI components (via the Squint Library).
Here’s the stuff you need to do the assignment
1. Assignment Sheet: Lab11_CarnivalGameGUI.pdf
2. Starting project: Lab11_CarnivalGameGUI_stuDistro.zip
3.Executable Example: example_CarnivalGame.jar
Posted on January 7th, 2009 by Baker Franke
Filed under: Labs | No Comments »
We’re going to kick off ‘09 by building some quick GUI applications so that you can learn some basics of Java components.
1. Get the “Squint” java library: squintv2.13.jar
2. Add the Library to a new BlueJ Project in a +Libs folder
3. Squint Documentation (esp. GUIManager): SquintDoc
4. Note the Squint textbook: Programming with Java, Squint and Swing [...]
Posted on January 5th, 2009 by Baker Franke
Filed under: Labs | No Comments »