This is the stagingdrafts environment running on https://bkleinen.github.io/stagingdrafts/
This site contains unpublished changes and draft documents.
- please visit the production website at https://home.htw-berlin.de/~kleinen/ instead!
 

Info1 WS2013

Website of Prof. Dr. Barne Kleinen, Professor for Media Informatics (Bachelor/Master) at HTW Berlin

Exercise 02: Shapes and TicketMachine

     <prev next>

This week’s lab work is intended to acquaint you with the BlueJ environment.

Pre-lab

What to Bring to Lab

Please bring these exercises printed out or written out with you to lab. Please have your name on your page.

P1. In the lecture we have talked about data types called int and String. Java has more predefined primitive data types. What are they? Record where you found this information.

P2. What are the types of the following values (constants)?

  • 0
  • “hello”
  • 101
  • -1
  • true
  • “true”
  • “33”
  • ‘3’
  • 3.1415

P3. Pick up a book - you should have at least one at home. Is it an object or a class? If it is a class, name some objects. If it is an object, name the class. Give your reasoning.

P4. What class does the following constructor belong to? How many formal parameters does it have? What are their types?

public Book (String title, double price){ }

If you will be using your own laptop in the lab, please install BlueJ before you come to lab. Downloads are available for all platforms - it’s Java!

Post-Lab, AKA What To Turn In

Your completed assignment, submitted in Moodle as a pdf, should include:

  • the names and roles of any collaborators in any parts of the exercise.
  • a description of what you did during the lab, including a record of how you got BlueJ started and how you produced the pdf
  • a screenshot of your scene. How did you get a screenshot produced?
  • a description of what you tried with the TicketMachine and what you think is wrong with the code given.

Lab assignments are due the night before your next lab at 23.00, I want you to get some sleep the night before the next class. They may, of course, be turned in earlier. You hand them in by preparing the report in PDF and submitting it to Moodle.

Assignment

Download the exercise source code from GitHub (you can download the whole exercise02 repository as a zip here) and open up the Figures project.

  1. What do circles, triangles, and squares have in common? Do they have any differences?

  2. Create a circle, a triangle, and two squares. Oops, where is the second square? How can you make both visible on the screen?

  3. Make all four figures have the same color. What did you have to do? Did you make any mistakes doing this?

  4. Now make an interesting picture using these three shapes! Use at least 5 objects. Record what you had to do to get this scene set up. Take a screenshot for your report.

  5. What is wrong with the following constructor?

     public TicketMachine (int ticketCost) {
       int price = ticketCost;
       balance = 0;
       total = 0;
     }
    
  6. Open the TicketMachine project in BlueJ. Replace the constructor with the constructor from 5 and try it out. Were you right? Record your results in your report.

  7. Kara: Go back to the Greenfoot Scenario from last exercise. Look at the source code from Kara01 and KaraWorld01. Do these classes have constructors? If so, can you figure out what they do? (“super” calls the super class constructor).

  8. (For the bored) Okay, so you’ve been programming since before you could talk and this is child’s play. Explore a little deeper - can you make the shapes canvas larger? What happens when a figure hits the wall? How can you figure out where the wall is? Right, this is badly programmed. What would you have to do to get a shape to bounce off the wall? Can you do it?

  9. (For the really bored) Can you make the better-ticket-machine give proper change using Euro coins?

Writeup - what to put in the Lab Report

You will be doing your writeup at home or in the lab if time permits. Use the notes that you took in your logbook. Submit your writeup as your post-lab to the Moodle area.


Adapted from https://www.f4.htw-berlin.de/~weberwu/info1/Labs/Lab0.shtml , which was itself adapted from Objects First with Java, A Practical Introduction Using BlueJ. David Barnes & Michael Kölling, 2009