Lab 11
Part 1:
- MP6 (Recursion, See?) is out and due next week.
- Finish up Turing's Craft. Get help from others with any remaining questions.
- Become proficient with the Debugger:
- Here's a helpful online video about Eclipse's debugger: http://eclipsetutorial.sourceforge.net/debugger01/lesson01.html (15 minutes; skip the first 5 minutes).
- Know how to use the debugger perspective i.e. setting breakpoints, inspecting variables, single-stepping, step-into step-outof functions etc. You'll need it for the MP.
- Write mathematical and graphical small recursive functions.
Part 2: Create and explain two small recursive examples
- Calculate a recursive mathematical function: Triangle numbers, Fibonacci or Factorial calculation. If you're not sure where to start read the pre-lecture readings: ch7.1 (archived7.1), ch7.2, (archived7.2). You must show your TA or a CA how you can set breakpoints, step through the code and into your recursive function again and again using the step into debugger functionality to get full section achievement points today.
- Recursive graphics. Your program will use to recursion to create an recursive image (i.e no loops). For example, can you create something like this?
Zen.drawImage(String imagefilename, int x, int y, int width, int height)
is useful.
You'll find the Zen graphics class in MP2 and PairProgramming projects. Create your own new Java project and copy-paste the Zen class into your new project.
When creating a new project select "Use Project Root for source and class files"
For points today, demonstrate and explain your two programs to your TA. If you get stuck, ask other students for help.