Chapter 5 Methods. Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved.

Similar documents
Chapter 5 Methods. Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved.

Chapter 5 Methods / Functions

Chapter 5 Methods. Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All rights reserved.

Chapter 6 Methods. Dr. Hikmat Jaber

To define methods, invoke methods, and pass arguments to a method ( ). To develop reusable code that is modular, easy-toread, easy-to-debug,

CS110: PROGRAMMING LANGUAGE I

Chapter 5 Methods. Modifier returnvaluetype methodname(list of parameters) { // method body; }

Chapter 5 Methods. Lecture notes for computer programming 1 Faculty of Engineering and Information Technology Prepared by: Iyad Albayouk

COP3502 Programming Fundamentals for CIS Majors 1. Instructor: Parisa Rashidi

Lecture 5: Methods CS2301

Benefits of Methods. Chapter 5 Methods

Announcements. PS 3 is due Thursday, 10/6. Midterm Exam 1: 10/14 (Fri), 9:00am-10:53am

CS115 Principles of Computer Science

Chapter 6: Methods. Objectives 9/21/18. Opening Problem. Problem. Problem. Solution. CS1: Java Programming Colorado State University

JAVA Programming Concepts

Chapter 6 Methods. Liang, Introduction to Java Programming, Tenth Edition, Global Edition. Pearson Education Limited

Opening Problem. Find the sum of integers from 1 to 10, from 20 to 30, and from 35 to 45, respectively.

Opening Problem. Find the sum of integers from 1 to 10, from 20 to 30, and from 35 to 45, respectively.

12. Numbers. Java. Summer 2008 Instructor: Dr. Masoud Yaghini

Basic computer skills such as using Windows, Internet Explorer, and Microsoft Word. Chapter 1 Introduction to Computers, Programs, and Java

CS5000: Foundations of Programming. Mingon Kang, PhD Computer Science, Kennesaw State University

Chapter 4 Mathematical Functions, Characters, and Strings

Mathematical Functions, Characters, and Strings. CSE 114, Computer Science 1 Stony Brook University

CS-201 Introduction to Programming with Java

Mathematical Functions, Characters, and Strings. CSE 114, Computer Science 1 Stony Brook University

Methods. CSE 114, Computer Science 1 Stony Brook University

CS1150 Principles of Computer Science Methods

CS1150 Principles of Computer Science Methods

Lecture #6-7 Methods

Expressions and operators

DUBLIN CITY UNIVERSITY

DUBLIN CITY UNIVERSITY

Functions. Functions are everywhere in C. Pallab Dasgupta Professor, Dept. of Computer Sc & Engg INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR

INTRODUCTION TO C++ FUNCTIONS. Dept. of Electronic Engineering, NCHU. Original slides are from

Functions. Prof. Indranil Sen Gupta. Dept. of Computer Science & Engg. Indian Institute t of Technology Kharagpur. Introduction

CS-201 Introduction to Programming with Java

JAVA PROGRAMMING LAB. ABSTRACT In this Lab you will learn to define and invoke void and return java methods

The Math Class (Outsource: Math Class Supplement) Random Numbers. Lab 06 Math Class

Primitive Data Types: Intro

Using Free Functions

Chapter 4. Mathematical Functions, Characters, and Strings

static int min(int a, int b) Returns the smaller of two int values. static double pow(double a,

Module 4: Characters, Strings, and Mathematical Functions

Lecture 2:- Functions. Introduction

Function. specific, well-defined task. whenever it is called or invoked. A function to add two numbers A function to find the largest of n numbers

Downloaded from Chapter 2. Functions

CS110D: PROGRAMMING LANGUAGE I

Computer Programming, I. Laboratory Manual. Experiment #7. Methods

Object Oriented Methods : Deeper Look Lecture Three

Java Methods. Lecture 8 COP 3252 Summer May 23, 2017

Functions. Autumn Semester 2009 Programming and Data Structure 1. Courtsey: University of Pittsburgh-CSD-Khalifa

CS313D: ADVANCED PROGRAMMING LANGUAGE. Lecture 3: C# language basics II

1.1 Your First Program! Naive ideal. Natural language instructions.

Methods: A Deeper Look

int sum = 0; for (int i = 1; i <= 10; i++) sum += i; System.out.println("Sum from 1 to 10 is " + sum);

2/3/2018 CS313D: ADVANCED PROGRAMMING LANGUAGE. Lecture 3: C# language basics II. Lecture Contents. C# basics. Methods Arrays. Dr. Amal Khalifa, Spr17

C++, How to Program. Spring 2016 CISC1600 Yanjun Li 1

1.1 Your First Program

Programming in C Quick Start! Biostatistics 615 Lecture 4

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 10: OCT. 6TH INSTRUCTOR: JIAYIN WANG

Procedural Abstraction and Functions That Return a Value. Savitch, Chapter 4

Python Lists: Example 1: >>> items=["apple", "orange",100,25.5] >>> items[0] 'apple' >>> 3*items[:2]

1.1 Your First Program

A Foundation for Programming

C Programs: Simple Statements and Expressions

CS313D: ADVANCED PROGRAMMING LANGUAGE

AP CS Unit 3: Control Structures Notes

Introduction to Computer Science Unit 2. Notes

Methods CSC 121 Fall 2016 Howard Rosenthal

Methods CSC 121 Spring 2017 Howard Rosenthal

Chapter 5 Methods. public class FirstMethod { public static void main(string[] args) { double x= -2.0, y; for (int i = 1; i <= 5; i++ ) { y = f( x );

C Programming for Engineers Functions

Functions. x y z. f (x, y, z) Take in input arguments (zero or more) Perform some computation - May have side-effects (such as drawing)

Methods (Deitel chapter 6)

Methods (Deitel chapter 6)

ECET 264 C Programming Language with Applications

Preview from Notesale.co.uk Page 2 of 79

Methods CSC 121 Fall 2014 Howard Rosenthal

Functions. Systems Programming Concepts

Programmierpraktikum

Methods with Parameters and Return Values

C++ Programming: From Problem Analysis to Program Design, Fifth Edition. Chapter 6: User-Defined Functions I

C Functions. 5.2 Program Modules in C

1.1 Your First Program

Introduction to Computer Science Unit 2. Notes

Java, Arrays and Functions Recap. CSE260, Computer Science B: Honors Stony Brook University

CS171:Introduction to Computer Science II

(2-2) Functions I H&K Chapter 3. Instructor - Andrew S. O Fallon CptS 121 (January 18, 2019) Washington State University

Chapter 4 Mathematical Functions, Characters, and Strings

Activity 4: Methods. Content Learning Objectives. Process Skill Goals

The Math Class. Using various math class methods. Formatting the values.

CT 229 Java Syntax Continued

CS1150 Principles of Computer Science Methods

엄현상 (Eom, Hyeonsang) School of Computer Science and Engineering Seoul National University COPYRIGHTS 2017 EOM, HYEONSANG ALL RIGHTS RESERVED

ECE 122. Engineering Problem Solving with Java

IT 374 C# and Applications/ IT695 C# Data Structures

Variable and Data Type 2

Recapitulate CSE160: Java basics, types, statements, arrays and methods

CS111: PROGRAMMING LANGUAGE II

The return Statement

Transcription:

Chapter 5 Methods rights reserved. 0132130807 1 Opening Problem Find the sum of integers from 1 to 10, from 20 to 30, and from 35 to 45, respectively. rights reserved. 0132130807 2 1

Problem int sum = 0; for (int i = 1; i <= 10; i++) sum += i; "Sum from 1 to 10 is " + sum); sum = 0; for (int i = 20; i <= 30; i++) sum += i; "Sum from 20 to 30 is " + sum); sum = 0; for (int i = 35; i <= 45; i++) sum += i; "Sum from 35 to 45 is " + sum); rights reserved. 0132130807 3 Problem int sum = 0; for (int i = 1; i <= 10; i++) sum += i; "Sum from 1 to 10 is " + sum); sum = 0; for (int i = 20; i <= 30; i++) sum += i; "Sum from 20 to 30 is " + sum); sum = 0; for (int i = 35; i <= 45; i++) sum += i; "Sum from 35 to 45 is " + sum); rights reserved. 0132130807 4 2

Solution public static int sum(int i1, int i2) { int sum = 0; for (int i = i1; i <= i2; i++) sum += i; return sum; method "Sum from 1 to 10 is " + sum(1, 10)); "Sum from 20 to 30 is " + sum(20, 30)); "Sum from 35 to 45 is " + sum(35, 45)); rights reserved. 0132130807 5 Defining Methods A method is a collection of statements that are grouped together to perform an operation. rights reserved. 0132130807 6 3

Defining Methods rights reserved. 0132130807 7 Method Signature Method signature is the combination of the method name and the parameter list. rights reserved. 0132130807 8 4

Formal Parameters The variables defined in the method header are known as formal parameters. rights reserved. 0132130807 9 Actual Parameters When a method is invoked, you pass a value to the parameter. This value is referred to as actual parameter or argument. rights reserved. 0132130807 10 5

Return Value Type A method may return a value. The returnvaluetype is the data type of the value the method returns. If the method does not return a value, the returnvaluetype is the keyword void. For example, the returnvaluetype in the main method is void. rights reserved. 0132130807 11 Testing the max method Calling Methods This program demonstrates calling a method max to return the largest of the int values TestMax Run rights reserved. 0132130807 12 6

Calling Methods rights reserved. 0132130807 13 Trace Method Invocation i is now 5 rights reserved. 0132130807 14 7

Trace Method Invocation j is now 2 rights reserved. 0132130807 15 Trace Method Invocation invoke max(i, j) rights reserved. 0132130807 16 8

Trace Method Invocation invoke max(i, j) Pass the value of i to num1 Pass the value of j to num2 rights reserved. 0132130807 17 Trace Method Invocation declare variable result rights reserved. 0132130807 18 9

Trace Method Invocation (num1 > num2) is true since num1 is 5 and num2 is 2 rights reserved. 0132130807 19 Trace Method Invocation result is now 5 rights reserved. 0132130807 20 10

Trace Method Invocation return result, which is 5 rights reserved. 0132130807 21 Trace Method Invocation return max(i, j) and assign the return value to k rights reserved. 0132130807 22 11

Trace Method Invocation Execute the print statement rights reserved. 0132130807 23 CAUTION A return statement is required for a value-returning method. The method shown below in (a) is logically correct, but it has a compilation error because the Java compiler thinks it possible that this method does not return any value. To fix this problem, delete if (n < 0) in (a), so that the compiler will see a return statement to be reached regardless of how the if statement is evaluated. rights reserved. 0132130807 24 12

Reuse Methods from Other Classes NOTE: One of the benefits of methods is for reuse. The max method can be invoked from any class besides TestMax. If you create a new class Test, you can invoke the max method using ClassName.methodName (e.g., TestMax.max). rights reserved. 0132130807 25 Call Stacks Each time a method is invoked, the system stores parameters and variables in an area of memory known as a stack, which stores elements in last-in, first-out fashion. last-in first-out (LIFO) When a method calls another method, the caller s stack space is kept intact, and new space is created to handle the new method call. When a method finishes its work and returns to its caller, its associated space is released. rights reserved. 0132130807 26 13

Call Stacks rights reserved. 0132130807 27 Trace Call Stack i is declared and initialized The main method is invoked. i: 5 rights reserved. 0132130807 28 14

Trace Call Stack j is declared and initialized The main method is invoked. j: 2 i: 5 rights reserved. 0132130807 29 Trace Call Stack Declare k Space required for the main method k: j: 2 i: 5 The main method is invoked. rights reserved. 0132130807 30 15

Trace Call Stack Invoke max(i, j) Space required for the main method k: j: 2 i: 5 The main method is invoked. rights reserved. 0132130807 31 Trace Call Stack pass the values of i and j to num1 and num2 num2: 2 num1: 5 Space required for the main method k: j: 2 i: 5 The max method is invoked. rights reserved. 0132130807 32 16

Trace Call Stack pass the values of i and j to num1 and num2 result: num2: 2 num1: 5 Space required for the main method k: j: 2 i: 5 The max method is invoked. rights reserved. 0132130807 33 Trace Call Stack (num1 > num2) is true result: num2: 2 num1: 5 Space required for the main method k: j: 2 i: 5 The max method is invoked. rights reserved. 0132130807 34 17

Trace Call Stack Assign num1 to result Space required for the max method result: 5 num2: 2 num1: 5 Space required for the main method k: j: 2 i: 5 The max method is invoked. rights reserved. 0132130807 35 Trace Call Stack Return result and assign it to k Space required for the max method result: 5 num2: 2 num1: 5 Space required for the main method k:5 j: 2 i: 5 The max method is invoked. rights reserved. 0132130807 36 18

Trace Call Stack Execute print statement Space required for the main method k:5 j: 2 i: 5 The main method is invoked. rights reserved. 0132130807 37 void Method Example This type of method does not return a value. The method performs some actions. TestVoidMethod Run rights reserved. 0132130807 38 19

Passing Parameters public static void nprintln(string message, int n) { for (int i = 0; i < n; i++) message); Suppose you invoke the method using nprintln( Welcome to Java, 5); What is the output? Suppose you invoke the method using nprintln( Computer Science, 15); What is the output? rights reserved. 0132130807 39 Pass by Value This program demonstrates passing values to the methods. Increment Run rights reserved. 0132130807 40 20

Pass by Value Testing Pass by value This program demonstrates passing values to the methods. TestPassByValue Run rights reserved. 0132130807 41 Pass by Value, cont. rights reserved. 0132130807 42 21

Modularizing Code Methods can be used to reduce redundant coding and enable code reuse. Methods can also be used to modularize code and improve the quality of the program. GreatestCommonDivisorMethod Run PrimeNumberMethod Run rights reserved. 0132130807 43 Overloading Methods Overloading the max Method public static double max(double num1, double num2) { return num1; return num2; TestMethodOverloading Run rights reserved. 0132130807 44 22

Ambiguous Invocation Sometimes there may be two or more possible matches for an invocation of a method, but the compiler cannot determine the most specific match. This is referred to as ambiguous invocation. Ambiguous invocation is a compilation error. rights reserved. 0132130807 45 Ambiguous Invocation public class AmbiguousOverloading { max(1, 2)); public static double max(int num1, double num2) { return num1; return num2; public static double max(double num1, int num2) { return num1; return num2; rights reserved. 0132130807 46 23

Scope of Local Variables A local variable: a variable defined inside a method. A local variable must be declared before it can be used. Scope: the part of the program where the variable can be referenced. The scope of a local variable starts from its declaration and continues to the end of the block that contains the variable. rights reserved. 0132130807 47 Scope of Local Variables, cont. You can declare a local variable with the same name multiple times in different non-nesting blocks in a method, But you cannot declare a local variable twice in nested blocks. rights reserved. 0132130807 48 24

Scope of Local Variables, cont. A variable declared in the initial action part of a for loop header has its scope in the entire loop. But a variable declared inside a for loop body has its scope limited in the loop body from its declaration and to the end of the block that contains the variable. rights reserved. 0132130807 49 Scope of Local Variables, cont. rights reserved. 0132130807 50 25

Scope of Local Variables, cont. // Fine with no errors public static void correctmethod() { int x = 1; int y = 1; // i is declared for (int i = 1; i < 10; i++) { x += i; // i is declared again for (int i = 1; i < 10; i++) { y += i; rights reserved. 0132130807 51 Scope of Local Variables, cont. // Errors public static void incorrectmethod() { int x = 1; int y = 1; for (int i = 1; i < 10; i++) { int x = 0; x += i; rights reserved. 0132130807 52 26

Scope of Local Variables, cont. Caution: Do not declare a variable inside a block and then attempt to use it outside the block. Here is an example of a common mistake: for (int i = 0; i < 10; i++) i); The last statement would cause a syntax error, because variable i is not defined outside of the for loop. rights reserved. 0132130807 53 Method Abstraction You can think of the method body as a black box that contains the detailed implementation for the method. Optional arguments for Input Optional return value Method Header Method body Black Box rights reserved. 0132130807 54 27

Benefits of Methods Write a method once and reuse it anywhere. Information hiding. Hide the implementation from the user. Reduce complexity. rights reserved. 0132130807 55 The Math Class The Math class contains the methods needed to perform basic mathematical functions. Such as : pow(a, b) and the Math.random(). This section introduces other useful methods in the Math class. They can be categorized as 1) trigonometric methods, exponent methods, and service methods. 2) Besides methods, the Math class provides two useful double constants, PI and E (the base of natural logarithms). You can use these constants as Math.PI Math.E in any program. rights reserved. 0132130807 56 28

The Math Class Class constants: PI E Class methods: Trigonometric Methods Exponent Methods Rounding Methods min, max, abs, and random Methods rights reserved. 0132130807 57 Trigonometric Methods rights reserved. 0132130807 58 29

Trigonometric Methods sin(double a) cos(double a) tan(double a) acos(double a) asin(double a) atan(double a) Radians toradians(90) Examples: Math.sin(0) returns 0.0 Math.sin(Math.PI / 6) returns 0.5 Math.sin(Math.PI / 2) returns 1.0 Math.cos(0) returns 1.0 Math.cos(Math.PI / 6) returns 0.866 Math.cos(Math.PI / 2) returns 0 rights reserved. 0132130807 59 Exponent Methods exp(double a) Returns e raised to the power of a. log(double a) Returns the natural logarithm of a. log10(double a) Returns the 10-based logarithm of a. pow(double a, double b) Returns a raised to the power of b. sqrt(double a) Returns the square root of a. Examples: Math.exp(1) returns 2.71 Math.log(2.71) returns 1.0 Math.pow(2, 3) returns 8.0 Math.pow(3, 2) returns 9.0 Math.pow(3.5, 2.5) returns 22.91765 Math.sqrt(4) returns 2.0 Math.sqrt(10.5) returns 3.24 rights reserved. 0132130807 60 30

Rounding Methods double ceil(double x) x rounded up to its nearest integer. This integer is returned as a double value. double floor(double x) x is rounded down to its nearest integer. This integer is returned as a double value. double rint(double x) x is rounded to its nearest integer. If x is equally close to two integers, the even one is returned as a double. int round(float x) Return (int)math.floor(x+0.5). long round(double x) Return (long)math.floor(x+0.5). rights reserved. 0132130807 61 Rounding Methods rights reserved. 0132130807 62 31

Rounding Methods rights reserved. 0132130807 63 The min, max, and abs Method max(a, b)and min(a, b) Returns the maximum or minimum of two parameters. abs(a) Returns the absolute value of the parameter. rights reserved. 0132130807 64 32