CS 112 Introduction to Programming Lecture 3: Java Methods Yang (Richard) Yang Computer Science Department Yale University 308A Watson, Phone: 432-6400.

Slides:



Advertisements
Similar presentations
Chapter 1: Computer Systems
Advertisements

Building Java Programs Chapter 1 Lecture 1-2: Static Methods reading:
Building Java Programs Chapter 1 Introduction to Java Programming.
Java Programs + Algorithms
Basic Java programs with println statements. 2 Compile/run a program 1.Write it –code or source code: the set of instructions in a program 2.Compile it.
1 Procedural decomposition using static methods suggested reading:1.4.
1 Procedural decomposition using static methods. 2 Algorithms Recall: An algorithm is a list of steps for solving a problem. What is the algorithm to.
Copyright 2006 by Pearson Education 1 Building Java Programs Chapter 1: Introduction to Java Programming.
Building Java Programs Chapter 1 Introduction to Java Programming.
Copyright 2010 by Pearson Education Building Java Programs Chapter 1 Lecture 1-2: Static Methods reading:
The Java Programming Language
Outline Java program structure Basic program elements
Copyright 2008 by Pearson Education Building Java Programs Chapter 1 Lecture 1-2: Static Methods, Avoiding Redundancy reading: self-check:
Copyright 2008 by Pearson Education Building Java Programs Chapter 1: Introduction to Java Programming.
Copyright 2013 by Pearson Education Building Java Programs Chapter 1 Lecture 1-1: Introduction; Basic Java Programs reading:
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Java Software Solutions Foundations of Program Design Sixth Edition by Lewis.
Copyright 2008 by Pearson Education Building Java Programs Chapter 1 Lecture 1-2: Static Methods reading:
Copyright 2008 by Pearson Education Building Java Programs Chapter 1 Lecture 1-1: Introduction; Basic Java Programs reading: self-check: #1-14.
Topic 3 static Methods and Structured Programming "The cleaner and nicer the program, the faster it's going to run. And if it doesn't, it'll be easy to.
Copyright 2006 by Pearson Education 1 Building Java Programs Chapter 1: Introduction to Java Programming.
1 Identifiers  Identifiers are the words a programmer uses in a program  An identifier can be made up of letters, digits, the underscore character (
Static methods. 2 Algorithms algorithm: a list of steps for solving a problem Example algorithm: "Bake sugar cookies" –Mix the dry ingredients. –Cream.
BUILDING JAVA PROGRAMS CHAPTER 1 INTRODUCTION TO JAVA PROGRAMMING.
The Java Programming Language
1 CSE 142 Lecture Notes Introduction These lecture notes are copyright (C) Marty Stepp May not be rehosted, copied, sold, or modified without Marty.
Copyright 2010 by Pearson Education Building Java Programs Chapter 1 Lecture 1-2: Static Methods reading:
Building Java Programs Chapter 1 Introduction to Java Programming.
1 WELCOME TO CSE 142! host: benson limketkai University of Washington, Summer 2007.
Building Java Programs Chapter 1 Introduction to Java Programming Copyright (c) Pearson All rights reserved.
CS 112 Introduction to Programming Lecture 3: Java Methods Yang (Richard) Yang Computer Science Department Yale University 308A Watson, Phone:
Introduction to Java.
© 2011 Pearson Education, publishing as Addison-Wesley Chapter 1: Computer Systems Presentation slides for Java Software Solutions for AP* Computer Science.
Copyright 2010 by Pearson Education APCS Building Java Programs Chapter 1 Lecture 1-1: Introduction; Basic Java Programs reading:
1 Problem Solving  The purpose of writing a program is to solve a problem  The general steps in problem solving are: Understand the problem Dissect the.
Building Java Programs Chapter 1 Introduction to Java Programming Copyright (c) Pearson All rights reserved.
CSc 110, Autumn 2016 Lecture 2: Functions. Review What is the output of the following print statements? print("this class\tis' the \"best\"") Write a.
Lecture 1: Introduction to Java Programming
Lecture 1: Basic Java Syntax
Building Java Programs
Static Methods and Method Calls
CSc 110, Autumn 2017 Lecture 2: Functions.
Working with Java.
Lecture 2: Static Methods Expressions reading: 1.4 – 2.1
Building Java Programs
CSE 190D, Winter 2013 Building Java Programs Chapter 1
Adapted from slides by Marty Stepp and Stuart Reges
Topic 3 static Methods and Structured Programming
Chapter 1: Computer Systems
Building Java Programs
Lecture 1: Basic Java Syntax
Building Java Programs
CSc 110, Spring 2018 Lecture 3: Functions.
Building Static Methods
Building Java Programs
CSc 110, Spring 2018 Lecture 2: Functions.
Lecture 2: Static Methods Expressions reading: 1.4 – 2.1
Building Java Programs
Building Java Programs
Building Java Programs
Building Java Programs Chapter 1
Building Java Programs
CSE 142, Spring 2012 Building Java Programs Chapter 1
Chapter 1 Lecture 1-2: Static Methods reading:
Building Java Programs
Zorah Fung University of Washington, Spring 2015
Building Java Programs
CSE 142, Winter 2014 Building Java Programs Chapter 1
Building Java Programs
Building Java Programs
Zorah Fung University of Washington, Winter 2016
Presentation transcript:

CS 112 Introduction to Programming Lecture 3: Java Methods Yang (Richard) Yang Computer Science Department Yale University 308A Watson, Phone:

2 Outline  Admin. and recap  Java methods

Admin  Practice Slides at the end of slides for Lecture 2  Exam 1 and Exam 2 will be scheduled around 1/3 and 2/3 of course  Office hours posted on the help page m Preference on time and location of office hours?  PS1 m Please check PS1 rubric before submission m Please use Piazza or to ask questions m You have 9 discretionary late days across the semester, but can use at most 3 days per PSET 3

Recap: Java Programming Steps 4  Programming in Java consists of three tasks m edit java source code (.java files) m compile java source code to generate bytecode (.class files) m execute/run/test bytecode using an interpreter run output source code compile byte code

Recap: Top-Down Java Syntax Structure public class { public static void main(String[] args) { ; ; ; ; } A class: -has a name, defined in a file with same name Convention we follow: capitalize each English word -starts with {, and ends with } -includes a group of methods statement: -a command to be executed -end with ; A method: -has a name Convention we follow: lowercase first word, capital following -starts with {, and ends with } -includes a group of statements

Recap: The System.out.println Statement  Two ways to use the statement: System.out.println(“string”); You may need to use escape sequences in strings System.out.println();  A related statement is System.out.print(“string”); It does not print a newline 6

7 Java Syntax: A Bottom-Up Look  Basic Java syntax units o white space and comments o identifiers (words) o symbols: { } “ ( ) [ ] ; = … o strings o numbers // A longer program public class Hello { public static void main(String[] args) { System.out.println("Hello, world!"); System.out.println(); System.out.println("This program produces"); System.out.println("four lines of output"); }

Out of Class Read Slides

9 Syntax: White Space  White space  includes spaces, new line characters, tabs  white space is used to separate other entities  extra white space is ignored  White space allows a Java program to be formatted in many ways, and should be formatted to enhance readability o the usage of white space forms part of programming style

10 Syntax: Comments  comment: A note written in source code by the programmer to describe or clarify the code. o Comments are ignored by the compiler o Useful for other people (and yourself!) to understand your code  Two types of comments in Java single-line comments use //… // this comment runs to the end of the line multi-lines comments use /* … */ /* this is a very long multi-line comment */

Syntax: Identifier  Identifier: A name given to an item in your program.  Syntax requirement on identifier:  must start with a letter or _ or $ m subsequent characters can be any of those or a number  Important: Java is case sensitive: m Hello and hello are different identifiers 11

12 Three Types of Identifiers 1. Identifiers chosen by ourselves when writing a program (such as HelloWorld ) 2. Identifiers chosen by another programmer, so we use the identifiers that they chose (e.g., System, out, println, main ) public class HelloWorld { public static void main(String[] args) { System.out.println(“Hello World!”); }

13 Three Types of Identifiers 3. Special identifiers called keywords: A keyword has a reserved meaning in Java. Java reserved words: they are all lowercase! abstract default if private this boolean do implements protected throw break double import public throws byte else instanceof return transient case extends int short try catch final interface static void char finally long strictfp volatile class float native super while const for new switch continue goto package synchronized

Examples  Which of the following are legal non reserved-word identifiers? m Greeting1 m g m class m 101dalmatians m Hello, World m 14

End Out of Class Read Slides

Compile/Syntax Errors  A syntax/compile error: A problem in the structure of a program that causes the compiler to fail, e.g., m Missing semicolon  Too many or too few { } braces m Class and file names do not match m … 16

Syntax Error: Example 1 public class Hello { 2 pooblic static void main(String[] args) { 3 System.owt.println("Hello, world!")_ 4 } 5 }

Syntax Error: Example 1 public class Hello { 2 pooblic static void main(String[] args) { 3 System.owt.println("Hello, world!")_ 4 } 5 }  Compiler output: Hello.java:2: expected pooblic static void main(String[] args) { ^ Hello.java:3: ';' expected } ^ 2 errors m The compiler shows the line number where it found the error. m The error messages sometimes can be tough to understand: Why can’t the computer just say “You misspelled ‘public’”? Since the computer knows that a “;” is missing, can’t it just fix it??

Lesson in syntax errors  Compilers can’t (DO not) read minds.  Compilers don’t make mistakes.  If the program is not doing what you want, do NOT blame the computer---it’s YOU who made a mistake.

20 Java Programming Steps and Errors  Compile-time errors m the compiler may find problems with syntax and other basic issues m if compile-time errors exist, an executable version of the program is not created  Run-time errors m a problem can occur during program execution, such as trying to divide by zero, which causes a program to terminate abnormally (crash)  Logical errors m a program may run, but produce incorrect results

21 Outline  Admin. And recap  Java methods m Motivation: why methods?

Algorithms  Algorithm: A list of steps for solving a problem.  An example algorithm (recipe): "Bake sugar cookies”

An Example Algorithm Spec: "Bake two batches of sugar cookies" 1. Preheat oven temperature to 375F. 2. Mix the dry ingredients. 3. Cream the butter and sugar. 4. Beat in the eggs. 5. Stir in the dry ingredients. 6. Set the timer for 8 min. 7. Place 1st batch of cookies to oven. 8. Allow the cookies to bake. 9. Set the timer for 8 min. 10. Place 2nd batch of cookies to oven. 11. Allow the cookies to bake. 12. Mix ingredients for frosting. 13. Spread frosting and sprinkles. Readability of the specification?

Problem 1: Lack of Structure  Lack of structure: Many tiny steps; tough to remember. m A human being typically can only manage seven (plus or minus 2) pieces of information at one time

Problem 2: Redundancy  Redundancy: unnecessary repeat 1. Preheat oven temperature to 375F. 2. Mix the dry ingredients. 3. Cream the butter and sugar. 4. Beat in the eggs. 5. Stir in the dry ingredients. 6. Set the timer for 8 min. 7. Place the first batch of cookies into the oven. 8. Allow the cookies to bake. 9. Set the timer for 8 min. 10. Place the second batch of cookies into the oven. 11. Allow the cookies to bake. 12. Mix ingredients for frosting. 13. Spread frosting and sprinkles.

Fix: Structured Algorithms  Structured algorithm: Split into coherent tasks. 1Preheat oven. m Set oven to 375 degrees 2Make the cookie batter. m Mix the dry ingredients. m Cream the butter and sugar. m Beat in the eggs. m Stir in the dry ingredients. 3Bake the cookies. m Set the timer for 8 min. m Place the cookies into the oven. m Allow the cookies to bake. 4Decorate the cookies. m Mix the ingredients for the frosting. m Spread frosting and sprinkles onto the cookies.

Structured Algorithm? // This program displays a delicious recipe for baking cookies. public class BakeCookies2 { public static void main(String[] args) { // Step 1: preheat oven System.out.println(“Preheat oven to 375F."); // Step 2: Make the cookie batter. System.out.println("Mix the dry ingredients."); System.out.println("Cream the butter and sugar."); System.out.println("Beat in the eggs."); System.out.println("Stir in the dry ingredients."); // Step 3a: Bake cookies (first batch). System.out.println("Set the timer for 8 min."); System.out.println("Place a batch of cookies into the oven."); System.out.println("Allow the cookies to bake."); // Step 3b: Bake cookies (second batch). System.out.println("Set the timer for 8 min."); System.out.println("Place a batch of cookies into the oven."); System.out.println("Allow the cookies to bake."); // Step 4: Decorate the cookies. System.out.println("Mix ingredients for frosting."); System.out.println("Spread frosting and sprinkles."); }

Structured Algorithms  Structured algorithm provides abstraction (hide/ignore the right details at the right time) 1Preheat oven. m Set oven to 375 degrees 2Make the cookie batter. m Mix the dry ingredients. m Cream the butter and sugar. m Beat in the eggs. m Stir in the dry ingredients. 3Bake the cookies. m Set the timer. m Place the cookies into the oven. m Allow the cookies to bake. 4Decorate the cookies. m Mix the ingredients for the frosting. m Spread frosting and sprinkles onto the cookies.

Structured Algorithms  Structured algorithm provides abstraction (hide/ignore the right details at the right time) 1Preheat oven. m Set oven to 375 degrees 2Make the cookie batter. m Mix the dry ingredients. m Cream the butter and sugar. m Beat in the eggs. m Stir in the dry ingredients. 3Bake the cookies. m Set the timer. m Place the cookies into the oven. m Allow the cookies to bake. 4Decorate the cookies. m Mix the ingredients for the frosting. m Spread frosting and sprinkles onto the cookies.

Removing Redundancy  A well-structured algorithm can describe repeated tasks with less redundancy. 1 Preheat oven. 2 Make the cookie batter. 3a Bake the cookies (first batch). 3b Bake the cookies (second batch). 4 Decorate the cookies.

31 Outline  Admin. and recap  Java methods m Motivation m Syntax: declaring method

Static Methods  Arrange statements into groups and give each group a name.  Each such named group of statements is a static method  Writing a static method is like adding a new command to Java. class method A statement method B statement method C statement

Gives your method a name so it can be referred to.  Syntax: public static void () { ; ;... ; }  Example: public static void printWarning() { System.out.println("This product causes cancer"); System.out.println("in lab rats and humans."); } Declaring a Method

Calling a Method Executes the method's code  Syntax: (); m You can call the same method many times if you like.  Example: printWarning(); m Output: This product causes cancer in lab rats and humans.

Example public class FreshPrince { public static void main(String[] args) { rap(); // Calling (running) the rap method System.out.println(); rap(); // Calling the rap method again } // This method prints the lyrics to my favorite song. public static void rap() { System.out.println("Now this is the story all about how"); System.out.println("My life got flipped turned upside-down"); }

Example public class FreshPrince { public static void main(String[] args) { rap(); // Calling (running) the rap method System.out.println(); rap(); // Calling the rap method again } // This method prints the lyrics to my favorite song. public static void rap() { System.out.println("Now this is the story all about how"); System.out.println("My life got flipped turned upside-down"); } } Output: Now this is the story all about how My life got flipped turned upside-down Now this is the story all about how My life got flipped turned upside-down

Final Cookie Program // This program displays a delicious recipe for baking cookies. public class BakeCookies3 { public static void main(String[] args) { preheatOven(); makeBatter(); bake(); // 1st batch bake(); // 2nd batch decorate(); } // Step 1: Preheat oven public static void preheatOven() { System.out.println(“Preheat Oven to 375F."); } // Step 2: Make the cake batter. public static void makeBatter() { System.out.println("Mix the dry ingredients."); System.out.println("Cream the butter and sugar."); System.out.println("Beat in the eggs."); System.out.println("Stir in the dry ingredients."); } // Step 3: Bake a batch of cookies. public static void bake() { System.out.println("Set the timer for 8 min."); System.out.println("Place a batch of cookies into the oven."); System.out.println("Allow the cookies to bake."); } // Step 4: Decorate the cookies. public static void decorate() { System.out.println("Mix ingredients for frosting."); System.out.println("Spread frosting and sprinkles."); }

Examples: Modifying BakeCookies  Bake three batches  Change timer from 8 to 10 min 38

 Capture structure of the program  main should be a good summary of the program public static void main(String[] args) { } Summary: Why Methods? public static void main(String[] args) { } public static...(...) { } public static...(...) { }

 Eliminate redundancy public static void main(String[] args) { } Summary: Why Methods? public static void main(String[] args) { } public static...(...) { }

41 Outline  Admin. and recap  Java methods m Motivations m Syntax: declaring method m Method control flow

 When a method A calls another method B, the program's execution... m "jumps" into method B, executing its statements, then m "jumps" back to method A at the point where the method was called. Method Calling Flow

Methods Calling Methods public class MethodsExample { public static void main(String[] args) { message1(); message2(); System.out.println("Done with main."); } public static void message1() { System.out.println("This is message1."); } public static void message2() { System.out.println("This is message2."); message1(); System.out.println("Done with message2."); }

Methods Calling Methods public class MethodsExample { public static void main(String[] args) { message1(); message2(); System.out.println("Done with main."); } public static void message1() { System.out.println("This is message1."); } public static void message2() { System.out.println("This is message2."); message1(); System.out.println("Done with message2."); }  Output: This is message1. This is message2. This is message1. Done with message2. Done with main.

public class MethodsExample { public static void main(String[] args) { message1(); message2(); System.out.println("Done with main."); }... } public static void message1() { System.out.println("This is message1."); } public static void message2() { System.out.println("This is message2."); message1(); System.out.println("Done with message2."); } public static void message1() { System.out.println("This is message1."); } Methods Calling Methods

 Example: What is the output of LazyDaddy?

47 Outline  Admin. and recap  Java methods m Why methods? m Syntax: declaring method m Method control flow m Designing methods

Example  Write a program to print these figures using methods. ______ / \ \ / \______/ \ / \______/ ______ / \ | STOP | \ / \______/ ______ / \

Program version 1 public class Figures1 { public static void main(String[] args) { System.out.println(" ______"); System.out.println(" / \\"); System.out.println("\\ /"); System.out.println(" \\______/"); System.out.println(); System.out.println("\\ /"); System.out.println(" \\______/"); System.out.println(" "); System.out.println(); System.out.println(" ______"); System.out.println(" / \\"); System.out.println("| STOP |"); System.out.println("\\ /"); System.out.println(" \\______/"); System.out.println(); System.out.println(" ______"); System.out.println(" / \\"); System.out.println(" "); } Does the code reflect structure? Is there redundancy?

50 Method Design Techniques  A basic method design method is called top-down decomposition m dividing a problem into sub problems to be solved using methods

Top-Down Decomposition ______ / \ \ / \______/ \ / \______/ ______ / \ | STOP | \ / \______/ ______ / \ egg teaCup stop hat main

Top-Down Decomposition ______ / \ \ / \______/ \ / \______/ ______ / \ | STOP | \ / \______/ ______ / \ egg teaCupstopSignhat main

Top-Down Decomposition (egg) ______ / \ \ / \______/ \ / \______/ ______ / \ | STOP | \ / \______/ ______ / \ egg teaCupstopSignhat main eggTopeggBottom

Top-Down Decomposition (teaCup) ______ / \ \ / \______/ \ / \______/ ______ / \ | STOP | \ / \______/ ______ / \ egg teaCupstopSignhat main eggTopeggBottom line

Top-Down Decomposition (stopSign) ______ / \ \ / \______/ \ / \______/ ______ / \ | STOP | \ / \______/ ______ / \ egg teaCupstopSignhat main eggTopeggBottom linestopLine

Top-Down Decomposition (hat) ______ / \ \ / \______/ \ / \______/ ______ / \ | STOP | \ / \______/ ______ / \ egg teaCupstopSignhat main eggTopeggBottom linestopLine Q: What is a good order to implement/test the methods?

Structured Program version // Suzy Student // Prints several figures, with methods // for structure and redundancy. public class Figures3 { public static void main(String[] args) { egg(); teaCup(); stopSign(); hat(); } // Draws the top half of an an egg figure. public static void eggTop() { System.out.println(" ______"); System.out.println(" / \\"); } // Draws the bottom half of an egg figure. public static void eggBottom() { System.out.println("\\ /"); System.out.println(" \\______/"); } // Draws a complete egg figure. public static void egg() { eggTop(); eggBottom(); System.out.println(); }...

Program version 3, cont'd.... // Draws a line of dashes. public static void line() { System.out.println(" "); } // Draws a teacup figure. public static void teaCup() { eggBottom(); line(); System.out.println(); } // Draws a stop sign figure. public static void stopSign() { eggTop(); System.out.println("| STOP |"); eggBottom(); System.out.println(); } // Draws a figure that looks sort of like a hat. public static void hat() { eggTop(); line(); }