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

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

Chapter 6 Methods. Dr. Hikmat Jaber

CS110: PROGRAMMING LANGUAGE I

Chapter 5 Methods / Functions

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

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

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

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

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

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

CS115 Principles of Computer Science

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

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

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

Benefits of Methods. Chapter 5 Methods

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

JAVA Programming Concepts

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

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

Lecture 5: Methods CS2301

Chapter 4 Mathematical Functions, Characters, and Strings

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

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

Methods. CSE 114, Computer Science 1 Stony Brook University

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

Chapter 4. Mathematical Functions, Characters, and Strings

Lecture #6-7 Methods

Module 4: Characters, Strings, and Mathematical Functions

CS1150 Principles of Computer Science Methods

CS1150 Principles of Computer Science Methods

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

CS-201 Introduction to Programming with Java

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

CS-201 Introduction to Programming with Java

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

AP CS Unit 3: Control Structures Notes

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

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

Advanced Object Concepts

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

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

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

DUBLIN CITY UNIVERSITY

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

Chapter 4 Mathematical Functions, Characters, and Strings

Introduction to Computer Science Unit 2. Notes

DUBLIN CITY UNIVERSITY

Primitive Data Types: Intro

Introduction to Computer Science Unit 2. Notes

Lecture 2:- Functions. Introduction

Expressions and operators

AP Computer Science. Return values, Math, and double. Copyright 2010 by Pearson Education

1.1 Your First Program

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

AP Computer Science A. Return values

Top-down programming design

1.1 Your First Program

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

Lecture 05: Methods. AITI Nigeria Summer 2012 University of Lagos.

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

Advanced Computer Programming

Using Free Functions

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

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

Lecture 6: While Loops and the Math Class

CS110D: PROGRAMMING LANGUAGE I

Object Oriented Methods : Deeper Look Lecture Three

Programmierpraktikum

Downloaded from Chapter 2. Functions

1.1 Your First Program

Methods CSC 121 Fall 2016 Howard Rosenthal

Methods (Deitel chapter 6)

Methods (Deitel chapter 6)

Methods CSC 121 Spring 2017 Howard Rosenthal

JAVASCRIPT BASICS. JavaScript Math Functions. The Math functions helps you to perform mathematical tasks

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

Functions. Lab 4. Introduction: A function : is a collection of statements that are grouped together to perform an operation.

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

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

Topic 12 more if/else, cumulative algorithms, printf

Using Java Classes Fall 2018 Margaret Reid-Miller

A Foundation for Programming

Key Concept: all programs can be broken down to a combination of one of the six instructions Assignment Statements can create variables to represent

Methods CSC 121 Fall 2014 Howard Rosenthal

Building Java Programs

A Balanced Introduction to Computer Science, 3/E

Building Java Programs

A Balanced Introduction to Computer Science, 3/E David Reed, Creighton University 2011 Pearson Prentice Hall ISBN


Building Java Programs

Methods: A Deeper Look

Calculations, Formatting and Conversions

COMP101: Introduction to Programming in JAVA. Reading: Morelli Chapter 0, Chapter 2, Chapter 3, Cohoon and Davidson Chapter 1. For pseudocode see

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 );

M e t h o d s a n d P a r a m e t e r s

Objectives of CS 230. Java portability. Why ADTs? 8/18/14

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)

Important Java terminology

Introduction to Programming (Java) 4/12

Classes. Classes as Code Libraries. Classes as Data Structures. Classes/Objects/Interfaces (Savitch, Various Chapters)

Transcription:

1

To define methods, invoke methods, and pass arguments to a method ( 5.2-5.5). To develop reusable code that is modular, easy-toread, easy-to-debug, and easy-to-maintain. ( 5.6). To use method overloading and understand ambiguous overloading ( 5.7). To design and implement overloaded methods ( 5.8). To determine the scope of variables ( 5.9). To know how to use the methods in the Math class ( 5.10-5.11). 2

What is a Method? A method is a collection of statements that are grouped together to perform an operation. There are two kinds of Method. User-defined methods: methods that you create. Predefined methods: methods that are already written and provided by java for example Math.sqrt(), Math.pow(), etc. Benefits of Methods Write a method once and reuse it anywhere. Information hiding. Hide the implementation from the user. Reduce complexity. 3

public static return type method Name( formal parameters if any) { // body of method Some Notes related to method 1. If there are formal parameters they will be separated by, 2. return type may be any one of the following ( int, float, double, String, char, long, short, void etc) depend on your method and logic. 3. If a method has return type void, there will be usually no return statement at the end of body of method. 4. If a method has any one of the following ( int, float, double, String, char, long, short etc) return type, there will be return statement at end of body of method with similar type of value returned by method. 4

method header method body modifier public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; Define a method return value type method name formal parameters parameter list method signature Invoke a method int z = max(x, y); actual parameters (arguments) return result; return value 5

Method signature is the combination of the method name and the parameter list. method header method body modifier public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; Define a method return value type method name formal parameters parameter list method signature Invoke a method int z = max(x, y); actual parameters (arguments) return result; return value 6

The variables defined in the method header are known as formal parameters. method header method body modifier public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; Define a method return value type method name formal parameters parameter list method signature Invoke a method int z = max(x, y); actual parameters (arguments) return result; return value 7

When a method is invoked, you pass a value to the parameter. This value is referred to as actual parameter or argument. method header method body public static int max(int num1, int num2) { modifier int result; return value type if (num1 > num2) result = num1; else result = num2; return result; Define a method method name return value formal parameters parameter list method signature Invoke a method int z = max(x, y); actual parameters (arguments) 8

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. method header method body public static int max(int num1, int num2) { modifier int result; return value type if (num1 > num2) result = num1; else result = num2; return result; Define a method method name return value formal parameters parameter list method signature Invoke a method int z = max(x, y); actual parameters (arguments) 9

animation Testing the max method This program demonstrates calling a method max to return the largest of the int values pass the value of i pass the value of j public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 10

animation i is now 5 public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 11

animation j is now 2 public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 12

animation invoke max(i, j) public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 13

animation invoke max(i, j) Pass the value of i to num1 Pass the value of j to num2 public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 14

animation declare variable result public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 15

animation (num1 > num2) is true since num1 is 5 and num2 is 2 public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 16

animation result is now 5 public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 17

animation return result, which is 5 public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 18

animation return max(i, j) and assign the return value to k public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 19

animation Execute the print statement public static void main(string[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println( "The maximum between " + i + " and " + j + " is " + k); public static int max(int num1, int num2) { int result; if (num1 > num2) result = num1; else result = num2; return result; 20

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. public static int sign(int n) { if (n > 0) return 1; else if (n == 0) return 0; else if (n < 0) return 1; Should be public static int sign(int n) { if (n > 0) return 1; else if (n == 0) return 0; else return 1; (a) (b) 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. 21

import java.util.*; public class TestAvg { public static void avg(){ // method starts here int x,y; double average; Scanner s=new Scanner (System.in); System.out.println(" Enter two integer numbers : "); x = s.nextint(); y = s.nextint(); average = (x+y)/2.0; System.out.println("Average = " + average); // Note there is no return statement here // method ends here public static void main(string[] args) { // main method avg(); // calling method 22

import java.util.*; public class TestAvg { public static void avg(int x, int y){ // method starts here double average; average = (x+y)/2.0; System.out.println("Average = " + average); // Note there is no return statement here // method ends here public static void main(string[] args) { // main method int x,y; Scanner s=new Scanner (System.in); System.out.println(" Enter two integer numbers : "); x = s.nextint(); y = s.nextint(); avg(x,y); // calling method 23

import java.util.*; public class TestAvg { public static double avg( ){ // method starts here int x,y; double average; Scanner s=new Scanner (System.in); System.out.println(" Enter two integer numbers : "); x = s.nextint(); y = s.nextint(); average = (x+y)/2.0; return (average); // Note there is a return statement // method ends here public static void main(string[] args) { // main method System.out.println("Average = " + avg(); // calling method 24

import java.util.*; public class TestAvg { public static double avg( int x, int y ){ // method starts here double average = (x+y)/2.0; return (average); // Note there is a return statement // method ends here public static void main(string[] args) { // main method int x,y; Scanner s=new Scanner (System.in); System.out.println(" Enter two integer numbers : "); x = s.nextint(); y = s.nextint(); System.out.println("Average = " + avg(x,y); // calling method 25

This program demonstrates passing values to the methods. public class TestPassByValue { public static void main(string[] args) { int num1 = 1, num2 = 2; System.out.println("Before invoking the swap method, num1 is " + num1 + " and num2 is " + num2); Swap(num1,num2); System.out.println("After invoking the swap method, num1 is " + num1 + " and num2 is " + num2); /** Swap two variables */ public static void swap(int n1, int n2) { System.out.println("\t Inside the swap method"); System.out.println("\t\t Before swapping n1 is " + n1 + " n2 is " + n2); // Swap n1 with n2 int temp = n1; n1 = n2; n2 = temp; System.out.println("\t\tAfter swapping n1 is " + n1 + " n2 is " + n2); 26

The values of num1 and num2 are passed to n1 and n2. Executing swap does not affect num1 and num2. Space required for the swap method temp: n2: 2 n1: 1 Space required for the main method num2: 2 num1: 1 Space required for the main method num2: 2 num1: 1 Space required for the main method num2: 2 num1: 1 Stack is empty The main method is invoked The swap method is invoked The swap method is finished The main method is finished 27

Method overloading In Java it is possible to define two or more methods within the same class that share the same name, as long as their parameter declarations are different. When this is the case, the methods are said to be overloaded, and the process is referred to as method overloading. 28

Following example shows Overloading the max Method public class TestMethodOverloading { public static void main(string[] args) { System.out.println("The maximum between 3 and 4 is " + max(3, 4)); System.out.println("The maximum between 3.0 and 5.4 is " + max(3.0, 5.4)); System.out.println("The maximum between 3.0, 5.4, and 10.14 is " + max(3.0, 5.4, 10.14)); public static int max(int num1, int num2) { if (num1 > num2) return num1; else return num2; public static double max(double num1, double num2) { if (num1 > num2) return num1; else return num2; public static double max(double num1, double num2, double num3) { return max(max(num1, num2), num3); 29

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. 30

public class AmbiguousOverloading { public static void main(string[] args) { System.out.println(max(1, 2)); public static double max(int num1, double num2) { if (num1 > num2) return num1; else return num2; public static double max(double num1, int num2) { if (num1 > num2) return num1; else return num2; 31

A local variable: a variable defined inside a method. 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. A local variable must be declared before it can be used. 32

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. 33

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. The scope of i The scope of j public static void method1() {.. for (int i = 1; i < 10; i++) {.. int j;... 34

It is fine to declare i in two non-nesting blocks public static void method1() { int x = 1; int y = 1; for (int i = 1; i < 10; i++) { x += i; for (int i = 1; i < 10; i++) { y += i; It is wrong to declare i in two nesting blocks public static void method2() { int i = 1; int sum = 0; for (int i = 1; i < 10; i++) sum += i; 35

// 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; 36

// With errors public static void incorrectmethod() { int x = 1; int y = 1; for (int i = 1; i < 10; i++) { int x = 0; x += i; 37

Class constants: PI E Class methods: Trigonometric Methods Exponent Methods Rounding Methods min, max, abs, and random Methods 38

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 39

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. 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 sqrt(double a) Returns the square root of a. 40

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). 41

Math.ceil(2.1) returns 3.0 Math.ceil(2.0) returns 2.0 Math.ceil(-2.0) returns 2.0 Math.ceil(-2.1) returns -2.0 Math.floor(2.1) returns 2.0 Math.floor(2.0) returns 2.0 Math.floor(-2.0) returns 2.0 Math.floor(-2.1) returns -3.0 Math.rint(2.1) returns 2.0 Math.rint(2.0) returns 2.0 Math.rint(-2.0) returns 2.0 Math.rint(-2.1) returns -2.0 Math.rint(2.5) returns 2.0 Math.rint(-2.5) returns -2.0 Math.round(2.6f) returns 3 Math.round(2.0) returns 2 Math.round(-2.0f) returns -2 Math.round(-2.6) returns -3 42

max(a, b)and min(a, b) Returns the maximum or minimum of two parameters. abs(a) Returns the absolute value of the parameter. random() Returns a random double value in the range [0.0, 1.0). Examples: Math.max(2, 3) returns 3 Math.max(2.5, 3) returns 3.0 Math.min(2.5, 3.6) returns 2.5 Math.abs(-2) returns 2 Math.abs(-2.1) returns 2.1 43

Generates a random double value greater than or equal to 0.0 and less than 1.0 (0 <= Math.random() < 1.0). Examples: (int)(math.random() * 10) 50 + (int)(math.random() * 50) Returns a random integer between 0 and 9. Returns a random integer between 50 and 99. In general, a + Math.random() * b Returns a random number between a and a + b, excluding a + b. 44