Building Java Programs

Similar documents
Topic 3 static Methods and Structured Programming

Building Java Programs

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Recap: Structure of a Java program CS 112 Introduction to Programming. A Foundation for Programming Why Introduce Static Methods?

CS 112 Introduction to Programming

Building Java Programs

Lecture 1: Basic Java Syntax

Building Java Programs

Building Java Programs Chapter 1

Static Methods & Decomposition

Introduction to Computer Programming

Entering the world of Javatar

Building Java Programs Chapter 1

CSc 110, Spring Lecture 2: Functions. Adapted from slides by Marty Stepp and Stuart Reges

CSc 110, Autumn Lecture 2: Functions

CSE 142, Summer 2015

CSE 142, Summer 2014

Procedural decomposition using static methods

clicker question Comments Using comments Topic 3 static Methods and Structured Programming

Building Java Programs

CSE 201 Java Programming I. Smart Coding School website:

Building Java Programs. Introduction to Java Programming

Building Java Programs. Chapter 1: Introduction to Java Programming

Building Java Programs. Introduction to Programming and Simple Java Programs

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

CS 112 Introduction to Programming

Admin. CS 112 Introduction to Programming. Recap: Java Static Methods. Recap: Decomposition Example. Recap: Static Method Example

The CS job market. Building Java Programs Chapter 1. Programming languages. What is programming? Introduction to Java Programming

Building Java Programs

Building Java Programs

Building Java Programs

A Unicorn Named Sparkle Word Search. A New Friend for Sparkle Coloring Sheet. A Unicorn Named Sparkle s First Christmas Coloring Sheet

Getting Started With Java

Introduction to Java. Java Programs Classes, Methods, and Statements Comments Strings Escape Sequences Identifiers Keywords

The diagram below is only partially complete. Use the terms in the word list to complete the empty boxes. Make dinner

Java Programming. What is a program? Programs Recipes. Programs as Recipes 8/16/12. Pancakes In one bowl. mix: 1½ cup flour

Introduction to Computer Programming concepts using StarLogo TNG

COMPUTATIONAL THINKING

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

CSc 110, Autumn 2016 Lecture 6: Parameters. Adapted from slides by Marty Stepp and Stuart Reges

CIS 110: Introduction to Computer Programming

Topic 7 parameters. Based on slides from Marty Stepp and Stuart Reges from

Creating a Program in JCreator. JCreator is then used to create our program. But the first step is to create a new file.

CIS 110: Introduction to Computer Programming. Lecture 2 Decomposition and Static Methods ( 1.4)

Graded Project. HTML Coding

Algorithms: The recipe for computation

ITC213: STRUCTURED PROGRAMMING. Bhaskar Shrestha National College of Computer Studies Tribhuvan University

Java Programming. What is a program? Programs as Recipes. Programs Recipes 8/20/15. Pancakes In one bowl

CS111: PROGRAMMING LANGUAGE II

2.9 Modularization. Department of CSE,Coimbatore

Module 1 - Applications: Visually Modeling Fractions

LN #6 & 7 (2 Hrs) Modularization 1 & 2 CTPS Department of CSE,Coimbatore

Building Java Programs

Building Java Programs


COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Chapter Two: Classes and Objects

Grade 7 Math LESSON 14: MORE PROBLEMS INVOLVING REAL NUMBERS TEACHING GUIDE

Building Java Programs

Chapter 7: User Defined Functions and Stack Mechanics

CS1150 Principles of Computer Science Methods

Building Java Programs

Building Java Programs

CSE 142. Lecture 1 Course Introduction; Basic Java. Portions Copyright 2008 by Pearson Education

CIS 110: Introduction to Computer Programming

TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA

CS Week 2. Jim Williams, PhD

Lab #9: Introduction to Logisim CS 0447/COE 0147: Spring 2012

CONTENTS: What Is Programming? How a Computer Works Programming Languages Java Basics. COMP-202 Unit 1: Introduction

CS106A, Stanford Handout #25. Methods 2

Lab 8: Introduction to Scala 12:00 PM, Mar 14, 2018

Spring CS Homework 3 p. 1. CS Homework 3

Welcome to CSE 142! Zorah Fung University of Washington, Spring Building Java Programs Chapter 1 Lecture 1: Introduction; Basic Java Programs

Repetition with for loops

Two figures that have the exact same shape, but not necessarily the exact same size, are called similar

Programming with Java

Syntax of Variable Declarations. Variables Usages as Expressions. Self-assignment Statements. Assignment. Scoping and Naming Rules

Topic 4 Expressions and variables

Building Java Programs Chapter 2

Algorithmic Problem Solving. Penny Rheingans University of Maryland Baltimore County

SOEE1160: Computers and Programming in Geosciences Semester /08. Dr. Sebastian Rost

contain a geometry package, and so on). All Java classes should belong to a package, and you specify that package by typing:

CS298 Project Presentation By Priya Gangaraju

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

Building Java Programs. Chapter 2: Primitive Data and Definite Loops

Lecture 2: Operations and Data Types

Activity 6: Loops. Content Learning Objectives. Process Skill Goals

School of Computer Science CPS109 Course Notes 6 Alexander Ferworn Updated Fall 15. CPS109 Course Notes 6. Alexander Ferworn

Answer Key. ANSWER: a. 2; b.

Claremont McKenna College Computer Science

1. The Normal Distribution, continued

Quiz 1: Functions and Procedures

Everyday Algorithms. Algorithms and Introduction to Programming. bake a cake. start. mix sugar and butter. stir in 2 eggs. stir in flour.

(A) 99 (B) 100 (C) 101 (D) 100 initial integers plus any additional integers required during program execution

Introduction to Data Structures

Solving Linear Recurrence Relations (8.2)

COMP 102: Computers and Computing

Duty/Task Crosswalk to ACF Standards

(Refer Slide Time: 01.26)

CIS 110 Introduction To Computer Programming. October 5th, 2011 Exam 1. Review problems

Transcription:

Comments Building Java Programs Chapter 1 Lecture 1-2: Static Methods reading: 1.4-1.5 comment: A note written in source code by the programmer to describe or clarify the code. Comments are not executed when your program runs. Syntax: // comment text, on one line or, /* comment text; may span multiple lines */ Examples: // This is a one-line comment. /* This is a very long multi-line comment. */ 2 Using comments Comments example Comments are useful for: Understanding larger, more complex programs. Working in teams understanding each other s code. Augmenting your own memory! Brainstorming. /* Suzy Student, CS 101, Fall 2019 This program prints lyrics about something. */ public class BaWitDaBa { // first verse System.out.println("Bawitdaba"); System.out.println("da bang a dang diggy diggy"); Where to place comments: at the top of each file (a "comment header") at the start of every method (seen later) to explain complex pieces of code // second verse System.out.println("diggy said the boogy"); System.out.println("said up jump the boogy"); 3 4 Algorithms algorithm: A list of steps for solving a problem. Static methods reading: 1.4 Example algorithm: "Bake sugar cookies" Mix the dry ingredients. Cream the butter and sugar. Beat in the eggs. Stir in the dry ingredients. Set the oven temperature. Set the timer for 10 minutes. Place the cookies into the oven. Allow the cookies to bake. Spread frosting and sprinkles onto the cookies. 6 bye 1

Problems with algorithms Structured algorithms lack of structure: Many steps; tough to follow. redundancy: Consider making a double batch Mix the dry ingredients. Cream the butter and sugar. Beat in the eggs. Stir in the dry ingredients. Set the oven temperature. Set the timer for 10 minutes. Place the first batch of cookies into the oven. Allow the cookies to bake. Set the timer for 10 minutes. Place the second batch of cookies into the oven. Allow the cookies to bake. Mix ingredients for frosting. structured algorithm: Split into coherent tasks. 1 Make the batter. Mix the dry ingredients. Cream the butter and sugar. Beat in the eggs. Stir in the dry ingredients. 2 Bake the cookies. Set the oven temperature. Set the timer for 10 minutes. Place the cookies into the oven. Allow the cookies to bake. 3 Decorate the cookies. Mix the ingredients for the frosting. Spread frosting and sprinkles onto the cookies. 7 8 Removing redundancy A well-structured algorithm can describe repeated tasks with less redundancy. 1 Make the cookie batter. Mix the dry ingredients. 2a Bake the cookies (first batch). Set the oven temperature. Set the timer for 10 minutes. 2b Bake the cookies (second batch). Repeat Step 2a 3 Decorate the cookies. 9 A program with redundancy public class BakeCookies { 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."); System.out.println("Mix ingredients for frosting."); System.out.println("Spread frosting and sprinkles."); 10 Static methods static method: A named group of s. denotes the structure of a program eliminates redundancy by code reuse procedural decomposition: dividing a problem into methods Writing a static method is like adding a new command to Java. class method A method B method C 11 Using static methods 1. Design (think about) the algorithm. Look at the structure, and which commands are repeated. Decide what are the important overall tasks. 2. Declare (write down) the methods. Arrange s into groups and give each group a name. 3. Call (run) the methods. The program's main method executes the other methods to perform the overall task. 12 bye 2

Design of an algorithm // This program displays a delicious recipe for baking cookies. public class BakeCookies2 { // Step 1: Make the cake 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 2a: Bake cookies (first batch). // Step 2b: Bake cookies (second batch). // Step 3: Decorate the cookies. System.out.println("Mix ingredients for frosting."); System.out.println("Spread frosting and sprinkles."); 13 Syntax: Gives your method a name so it can be executed public static void name() { ; ; ; Example: Declaring a method public static void printwarning() { System.out.println("This product causes cancer"); System.out.println("in lab rats and humans."); 14 Calling a method Executes the method's code Syntax: name(); You can call the same method many times if you like. Example: printwarning(); Program with static method public class FreshPrince { rap(); // Calling (running) the rap method 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: This product causes cancer in lab rats and humans. 15 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 16 Final cookie program // This program displays a delicious recipe for baking cookies. public class BakeCookies3 { makebatter(); bake(); // 1st batch bake(); // 2nd batch decorate(); // Step 1: 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 2: Bake a batch of cookies. public static void bake() { // Step 3: Decorate the cookies. public static void decorate() { System.out.println("Mix ingredients for frosting."); System.out.println("Spread frosting and sprinkles."); 17 Methods calling methods public class MethodsExample { 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."); System.out.println("Done with message2."); Output: This is message1. This is message2. This is message1. Done with message2. Done with main. 18 bye 3

When a method is called, the program's execution "jumps" into that method, executing its s, then "jumps" back to the point where the method was called. public class MethodsExample { public static void message1() { System.out.println("This is message1."); message2(); System.out.println("Done System.out.println("Done with main."); with message2."); Control flow public static void message2() { System.out.println("This is message2."); public static void message1() { System.out.println("This is message1."); 19 When to use methods Place s into a static method if: The s are related structurally, and/or The s are repeated. You should not create static methods for: An individual println. Only blank lines. (Put blank printlns in main.) Unrelated or weakly related s. (Consider splitting them into two smaller methods.) 20 Drawing complex figures with static methods reading: 1.5 (Ch. 1 Case Study: DrawFigures) Static methods question Write a program to print these figures using methods. \/ \/ \/ 22 \/ \/ \/ Development strategy First version (unstructured): Create an empty program and main method. Copy the expected output into it, surrounding each line with System.out.println syntax. Run it to verify the output. 23 Program version 1 public class Figures1 { 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(""); System.out.println("\"); System.out.println(" \\/"); System.out.println(" "); System.out.println(" \"); System.out.println("\"); System.out.println(""); 24 bye 4

Development strategy 2 Output structure \/ \/ \/ Second version (structured, with redundancy): Identify the structure of the output. Divide the main method into static methods based on this structure. \/ \/ \/ The structure of the output: initial "egg" figure second "teacup" figure third "stop sign" figure fourth "hat" figure This structure can be represented by methods: egg teacup stopsign hat 25 26 Program version 2 Program version 2, cont'd. public class Figures2 { egg(); teacup(); stopsign(); hat(); public static void egg() { System.out.println(" "); System.out.println(" \"); System.out.println("\"); System.out.println("\"); System.out.println(" \\/"); public static void teacup() { System.out.println("\"); System.out.println(" \\/"); System.out.println(""); public static void stopsign() { System.out.println(" "); System.out.println(" \"); System.out.println("\"); System.out.println(""); System.out.println("\"); System.out.println(" \\/"); public static void hat() { System.out.println(" "); System.out.println(" \"); System.out.println("\"); System.out.println(""); 27 28 Development strategy 3 Output redundancy \/ \/ \/ Third version (structured, without redundancy): Identify redundancy in the output, and create methods to eliminate as much as possible. Add comments to the program. \/ \/ \/ The redundancy in the output: egg top: reused on stop sign, hat egg bottom: reused on teacup, stop sign divider line: used on teacup, hat This redundancy can be fixed by methods: eggtop eggbottom line 29 30 bye 5

Program version 3 // Suzy Student, CSE 138, Spring 2094 // Prints several figures, with methods for structure and redundancy. public class Figures3 { egg(); teacup(); stopsign(); hat(); // Draws the top half of an an egg figure. public static void eggtop() { System.out.println(" "); 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(); 31 Program version 3, cont'd. // Draws a teacup figure. public static void teacup() { eggbottom(); line(); // Draws a stop sign figure. public static void stopsign() { eggtop(); System.out.println(""); eggbottom(); // Draws a figure that looks sort of like a hat. public static void hat() { eggtop(); line(); // Draws a line of dashes. public static void line() { System.out.println(""); 32 bye 6