html5-img
1 / 43

Group Status Project Status

Group Status Project Status. Unit 6- METHODS. A Method allows us to create a reusable coding tool that can be called upon to perform a task. Java programs start with a Main method which then either performs tasks or calls upon other methods. Unit 6 Methods.

shirlyj
Télécharger la présentation

Group Status Project Status

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Group Status • Project Status

  2. Unit 6- METHODS • A Method allows us to create a reusable coding tool that can be called upon to perform a task. • Java programs start with a Main method which then either performs tasks or calls upon other methods.

  3. Unit 6 Methods Find the sum of integers from 1 to 10, from 20 to 30, and from 35 to 45, respectively. To this point we would solve the problem by doing a set of similar but slightly different chunks of programming repeatedly.

  4. Problem Solved Crude Style int sum = 0; for (int i = 1; i <= 10; i++) sum += i; System.out.println("Sum from 1 to 10 is " + sum); sum = 0; for (int i = 20; i <= 30; i++) sum += i; System.out.println("Sum from 20 to 30 is " + sum); sum = 0; for (int i = 35; i <= 45; i++) sum += i; System.out.println("Sum from 35 to 45 is " + sum);

  5. Problem with the Solution int sum = 0; for (int i = 1; i <= 10; i++) sum += i; System.out.println("Sum from 1 to 10 is " + sum); sum = 0; for (int i = 20; i <= 30; i++) sum += i; System.out.println("Sum from 20 to 30 is " + sum); sum = 0; for (int i = 35; i <= 45; i++) sum += i; System.out.println("Sum from 35 to 45 is " + sum);

  6. Elegant Method-based Solution public static int sum(int i1, int i2) { int sum = 0; for (int i = i1; i <= i2; i++) sum += i; return sum; } public static void main(String[] args) { System.out.println("Sum from 1 to 10 is " + sum(1, 10)); System.out.println("Sum from 20 to 30 is " + sum(20, 30)); System.out.println("Sum from 35 to 45 is " + sum(35, 45)); }

  7. A CLASS is a “blueprint” from which we create OBJECTS. • OBJECTS have a “state” of existence defined by ATTRIBUTES. • The ATTRIBUTES of an OBJECT are defined by the VARIABLES in the Object’s CLASS. • OBJECTS have “behaviors” that are defined by operations known as METHODS.

  8. Encapsulation • One of the principle attributes of Object Oriented Programming is ENCAPSULATION • If we view an OBJECT internally we should be able to see the details of the object’s variables and methods. • If we were to view it from outside then we should just see the services it provides and how it interacts with other objects. These services are its INTERFACE. • OBJECTS should be self-governing and provide their SERVICES to their CLIENTs through their INTERFACE as though they seem like a black box.

  9. VISIBILITY VISIBILITY “modifiers” help reinforce encapsulation ideas by restricting a client’s ability to access an object. FINAL is used to create an unchangeable variable like a Constant. PRIVATE restricts access to an object to the members of the object’s class. PRIVATE METHODS are known as SUPPORT Methods. PUBLIC visibility allows the object to be referenced anywhere. PUBLIC METHODS are know as SERVICE Methods PROTECTED- visibility by classes only in the same package

  10. main doIt helpMe obj.doIt(); helpMe(); Method Control Flow • The called method is often part of another class or object

  11. Method Body • The method header is followed by the method body char calc (int num1, int num2, String message) { int sum = num1 + num2; char result = message.charAt (sum); return result; } sumand result are local data They are created each time the method is called, and are destroyed when it finishes executing The return expression must be consistent with the return type

  12. char calc (int num1, int num2, String message) { int sum = num1 + num2; char result = message.charAt (sum); return result; } Parameters • When a method is called, the actual parameters in the invocation are copied into the formal parameters in the method header ch = obj.calc (25, count, "Hello");

  13. The return Statement • The return type of a method indicates the type of value that the method sends back to the calling location • A method that does not return a value has a void return type • A return statement specifies the value that will be returned return expression; • Its expression must conform to the return type

  14. Method Signature Method signature is the combination of the method name and the parameter list.

  15. Formal Parameters The variables defined in the method header are known as formal parameters.

  16. Actual Parameters When a method is invoked, you pass a value to the parameter. This value is referred to as actual parameter or argument.

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

  18. Calling Methods Testing the max method This program demonstrates calling a method max to return the largest of the int values TestMax

  19. animation Calling Methods, cont.

  20. animation Trace Method Invocation i is now 5

  21. animation Trace Method Invocation j is now 2

  22. animation Trace Method Invocation invoke max(i, j)

  23. animation Trace Method Invocation invoke max(i, j) Pass the value of i to num1 Pass the value of j to num2

  24. animation Trace Method Invocation declare variable result

  25. animation Trace Method Invocation (num1 > num2) is true since num1 is 5 and num2 is 2

  26. animation Trace Method Invocation result is now 5

  27. animation Trace Method Invocation return result, which is 5

  28. animation Trace Method Invocation return max(i, j) and assign the return value to k

  29. animation Trace Method Invocation Execute the print statement

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

  31. void Method Example This type of method does not return a value. The method performs some actions. TestVoidMethod

  32. Passing Parameters public static void nPrintln(String message, int n) { for (int i = 0; i < n; i++) System.out.println(message); } Suppose you invoke the method using nPrintln(“Welcome to Java”, 5); What is the output? Suppose you invoke the method using nPrintln(“Information Systems”, 15); What is the output? Can you invoke the method using nPrintln(15, “Computer Science”);

  33. Pass by Value This program demonstrates passing values to the methods. Increment

  34. Problem: Converting Decimals to Hexadecimals Write a method that converts a decimal integer to a hexadecimal. Method calls a method calls a method. Decimal2HexConversion

  35. Overloading Methods Overloading the max Method public static double max(double num1, double num2) { if (num1 > num2) return num1; else return num2; } TestMethodOverloading

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

  37. Ambiguous Invocation 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; } }

  38. Scope of Local Variables 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.

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

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

  41. Scope of Local Variables, cont.

  42. Scope of Local Variables, cont. // With errors public static void incorrectMethod() { int x = 1; int y = 1; for (int i = 1; i < 10; i++) { int x = 0; x += i; } }

  43. Lab 5

More Related