University of Washington, CSE 142

Lab 3: Parameters, Graphics

Except where otherwise noted, the contents of this document are Copyright 2013 Stuart Reges and Marty Stepp.

lab document created by Marty Stepp, Stuart Reges and Whitaker Brand

Basic lab instructions

Today's lab

Goals for today:

Scope

Scope: a variable's scope is the part of a program in which it exists. In Java, the scope of a variable starts where it is declared and ends when the closing curly brace for the block that contains it is reached.
 1
 2
 3
 4
 5
 6
 7
 8
public static void main(String[] args) {
    int x = 5;
    for (int i = 1; i <= 5; i++) {
        int y = 10;
	System.out.println(x) // x is still in scope here!
    }
    System.out.println(x) // x is still in scope here, too!
}

Note: Two variables with the same name cannot both exist within the same scope.

Exercise : Scoping 1

What does the following code print out?
1
2
3
4
5
6
7
8
public static void main(String[] args) { 
    mystery();
}

public static void mystery() {
    int x = 50;
    System.out.println(x);
}

  Output

50

Exercise : Scoping 2

What does the following code print out?
1
2
3
4
5
6
7
8
9
public static void main(String[] args) { 
   int x = 15;
   mystery();
}

public static void mystery() {
    int x = 50;
    System.out.println(x);
}

  Output

50

Exercise : Scoping 3

What does the following code print out?
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
public static void main(String[] args) { 
   int x = 15;
   mystery();
   System.out.println(x);
}

public static void mystery() {
   int x = 50;
   x = x + 5; 
   System.out.println(x);
}

  Output

55 
15
[an error occurred while processing this directive]

Parameters

A parameter allows you to pass in a value (an expression or a variable!) to a method as you call it.

Example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
public static void main(String[] args) {
   squared(3);          // 3 times 3 is 9
   squared(8);          // 8 times 8 is 64  
   
   int x = 5;
   squared(x);          // 5 times 5 is 25

   squared(2 + 2)       // 4 times 4 is 16
}

public static void squared(int num) {
    System.out.println(num + " times " + num + " is " + (num * num));
}

Exercise : Parameters 1

What does the following code print out?
 1
 2
 3
 4
 5
 6
 7
 8
public static void main(String[] args) { 
   int x = 15;
   mystery(x);
}

public static void mystery(int y) {
   System.out.println(y);
}

  Output

15

Exercise : Parameters 2

What does the following code print out?
 1
 2
 3
 4
 5
 6
 7
 8
 9
public static void main(String[] args) { 
   int x = 15;
   int y = 20;
   mystery(x);
}

public static void mystery(int y) {
   System.out.println(y);
}

  Output

15

Value Semantics

When passing around ints, doubles, chars, or Strings, we need to consider value semantics.

Recall this example:
1
2
3
4
5
public static void main(String[] args) {
   int x = 5;
   int y = x;
   x = 10;     // note that y still = 5. It does not change values as x changes.
}

continued on next slide...

Value Semantics (continued)

This concept persists within parameters. For example:

1
2
3
4
5
6
7
8
9
public static void main(String[] args) {
    int x = 5;
    mystery(x);
    // x still equals 5.
}

public static void mystery(int x) {
    x = x + 5;     // the value of x in mystery is now 10. main's x is unchanged.
}

Exercise : Parameters 3

What does the following code print out?
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
public static void main(String[] args) { 
   int x = 15;
   mystery(x);
   System.out.println(x);
}

public static void mystery(int x) {
   x = x + 50;
   System.out.println(x);
}

  Output

65
15

Parameter Ordering

When passing multiple parameters, order matters. For example:
1
2
3
4
5
6
7
8
9
public static void main(String[] args) {
   mystery(5, 8, "abc");     // prints "5 8 abc
                             //         8 abc 5"
}

public static void mystery(int x, int y, String z) {
   System.out.println(x + " " + y + " " + z);
   System.out.println(y + " " + z + " " + x);
}
[an error occurred while processing this directive]

Exercise : String Parameters 1

What does the following code print out?
 1
 2
 3
 4
 5
 6
 7
 8
public static void main(String[] args) { 
   String x = "y";
   mystery(x);
}

public static void mystery(String x) {
   System.out.println(x);
}

  Output

y

Exercise : String Parameters 2

What does the following code print out?
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
public static void main(String[] args) { 
   String x = "y";
   mystery(x);
   mystery("x");
   mystery("y");
}

public static void mystery(String x) {
   System.out.println(x);
}

  Output

y
x
y

Note: this is a simplified version of a type of problem called a Parameter Mystery! A parameter mystery is guaranteed to show up on the midterm. There are practice parameter mysteries of midterm-level difficulty later in this slide deck, in this week's section handout, and on PracticeIt!

[an error occurred while processing this directive]

Graphics

Now we'll explore several exercises related to drawing graphics. (none)

quilt drawingpanel compare
[an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive]

Checkpoint: Congratulations!

Nice job making it this far--labs are tough! Feel free to work with the person next to you for the remaining slides. Labs are a unique opportunity (unlike homework) to collaborate directly on ideas, and practice peer programming.

These next problems get a little more challenging as we explore earlier concepts further.

We put a lot of problems in here so that you have plenty to refer back to later when working on homework. Don't feel bad if you don't finish all of them--Brett can't finish them all in a 50 minute lab, either! :)

Forest the cat says good job!

[an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive]

Parameterized methods and Graphics

When you want to divide a graphical program into multiple drawing methods, you must pass Graphics g as a parameter in addition to any other parameters. Example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
public static void main(String[] args) {
    DrawingPanel panel = new DrawingPanel(400, 300);
    Graphics g = panel.getGraphics();
    ...
    drawStuff(g, 13, 52, 7);
}

public static void drawStuff(Graphics g, int a, int b, int c) {
    g.drawLine(a, 45, b, c);
    ...
}
[an error occurred while processing this directive] [an error occurred while processing this directive] [an error occurred while processing this directive]

If you finish them all...

If you finish all the exercises, try out our Practice-It web tool. It lets you solve Java problems from our Building Java Programs textbook.

You can view an exercise, type a solution, and submit it to see if you have solved it correctly.

Choose some problems from the book and try to solve them!