Professor Abdul-Quader
Methods / Program Design
Asynchronous lesson:
Questions?
Part 1:
public static void changeNumber(int x) {
x++;
}
public static void main(String[] args) {
int x = 0;
changeNumber(x);
System.out.println(x);
}
What do you think this outputs? What does this actually output?
public static void changeNumber(int[] x) {
x[0]++;
}
public static void main(String[] args) {
int[] x = new int[1];
x[0] = 0;
changeNumber(x);
System.out.println(x[0]);
}
What do you think this outputs? What does this actually output?
Two key benefits of using methods: code re-use and modular design. You can write a method once to solve a problem, and never have to re-write it or copy/paste it.
Rule of thumb: if you need to do something more than once, you probably should write a method for it.
What are some “reusable building blocks” we can make for project 1?
If you’re stuck: see if you can try writing these smaller bits first. This might help you get ideas for how to build the larger project.
In small groups (3-5): design a program which asks the user to input in the current time (hour and minute, using 24-hour format) and a number of minutes to add (up to a max of 1000), and outputs the time after that many minutes.
Brainstorm for about 5 minutes with your group.
Consider the displayTime
method:
hourAfter:
Method getInput
:
low
and high
variables, output that the number is not between low
and high
, and exit.currentRow != endRow && currentCol != endCol
?currentRow != endRow || currentCol != endCol
?Keep in mind the grading rubric:
Quiz 2.