Presentation is loading. Please wait.

Presentation is loading. Please wait.

Method Parameters and Overloading. Topics The run-time stack Pass-by-value Pass-by-reference Method overloading Stub and driver methods.

Similar presentations


Presentation on theme: "Method Parameters and Overloading. Topics The run-time stack Pass-by-value Pass-by-reference Method overloading Stub and driver methods."— Presentation transcript:

1 Method Parameters and Overloading

2 Topics The run-time stack Pass-by-value Pass-by-reference Method overloading Stub and driver methods

3 Objectives At the completion of this topic, students should be able to: Correctly write methods that use pass by value Correctly write methods that use pass by reference Explain what a side effect is Explain what method overloading is, and correctly use method overloading in a program Explain how type conversion affects method overloading Explain what a Driver and a Stub method are, and use them in programs

4 The Execution or Run-Time Stack An important component in understanding how methods work is the execution or run-time stack. The following slides discuss how C# uses the run-time stack when invoking a method. Note that this is only a conceptual view of how the stack operates. It is slightly more complicated than what is shown here, and operation of the stack depends a great deal on the operating system, the compiler, and the hardware environment.

5 To get an idea of how the stack works, think of the plate dispensers that you have seen in a cafeteria When a plate is pushed onto the stack, all of the other plates get pushed down. When a plate is removed from the top of the stack, all of the other plates pop up.

6 When a method is called (invoked), the computer builds a stack frame. The stack frame contains * the parameters that are being passed to the method * the address to return to when the method is done * any local variables declared in the method

7 return address parameters local variables Stack frame for Main( ) The Stack Main( )’s parameters come from the command line control returns to the operating system Any variables declared inside main’s { }

8 Main( ) calls method ”B” Stack frame for Main( ) Stack frame for method “B” The Stack return address parameters local variables return address parameters local variables any parameters passed to B returns to the point where B was called from inside of Main any variables declared inside of B’s { }

9 When method “B” is done, its stack frame is removed from the stack. Stack frame for Main( ) The Stack return address parameters local variables

10 Main( ) now goes on about its work. Stack frame for Main( ) The Stack return address parameters local variables

11 Example

12 using System; class Program { static void Main() { int a = 5; int b = 3; int c = Add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); }//End Main() static int Add(int num1, int num2) { int sum = num1 + num2; return sum; } }//End class Program

13 The Stack static void Main() { int a = 5; int b = 3; int c = Add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); } return address no parameters a = 5 b = 3

14 static void Main() { int a = 5; int b = 3; int c = Add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); } The Stack return address no parameters a = 5 b = 3

15 static void Main() { int a = 5; int b = 3; int c = Add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); } The Stack return address no parameters a = 5 b = 3 Main’s Stack Frame return address parameters local variables Build a Stack Frame for the call of Method B and push it onto the stack

16 static void Main() { int a = 5; int b = 3; int c = Add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); } The return address that goes on the stack is right here … before the assignment part of this statement. The Stack return address no parameters a = 5 b = 3 The Stack return address no parameters a = 5 b = 3 Main’s Stack Frame return address parameters local variables B’s Stack Frame

17 The Stack static void Main() { int a = 5; int b = 3; int c = Add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); } Put the parameters in the stack frame. These are copies of the values stored in a and b. return address 3535 no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 Main’s Stack Frame return address 3535 local variables B’s Stack Frame

18 static int Add(int num1, int num2) { int sum; sum = num1 + num2; return sum, } num1 num2 The Stack return address 3535 no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 Main’s Stack Frame return address 3535 sum B’s Stack Frame In the Add method, we use these names to refer to the parameters that were passed to the method. Sum is a local variable declared inside of the Add method

19 static int Add(int num1, int num2) { int sum; sum = num1 + num2; return sum, } The Stack return address 3535 no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 Main’s Stack Frame return address 3535 sum B’s Stack Frame Sum is a local variable declared inside of the Add method 8 num1 num2

20 static int Add(int num1, int num2) { int sum; sum = num1 + num2; return sum, } The Stack return address 3535 no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 Main’s Stack Frame return address 3535 sum B’s Stack Frame Sum is a local variable declared inside of the Add method 8 eax Copy the value of sum into the eax register 8 Values returned from a method are passed in a special hardware register num1 num2

21 static int Add(int num1, int num2) { int sum; sum = num1 + num2; return sum, } The Stack return address 3535 no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 return address no parameters a = 5 b = 3 Main’s Stack Frame return address 3535 sum B’s Stack Frame eax Get the return address 8 Values returned from a method are passed in a special hardware register 8 8 num1 num2

22 int Add(int num1, int num2) { int sum; sum = num1 + num2; return sum, } 8 Values returned from a method are passed in a special hardware register eax The Stack return address no parameters a = 5 b = 3 no parameters return address no parameters a = 5 b = 3 Main’s Stack Frame Remove B’s stack frame from the stack and go to where the return address points

23 The Stack static void Main() { int a = 5; int b = 3; int c = Add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); } control returns here return address no parameters a = 5 b = 3 c = ? 8 eax

24 The Stack static void Main() { int a = 5; int b = 3; int c = add(a,b); Console.WriteLine("The answer is {0}", c); Console.ReadLine( ); } 8 return address no parameters a = 5 b = 3 c = 8

25 Pass By Value When a parameter is passed by value, a copy of the value is made and passed to the method on the run-time stack.

26 static double Divide(int n, int d) { double r = (double)n / d; n++; d++; return r; } These names are local to the method Divide( ). The parameters passed to the method are given these names so that we can use them inside of the method.

27 static void Main() { int num = 0, den = 0; do { Console.Write("Enter in an integer value: "); num = int.Parse(Console.ReadLine()); Console.Write("Enter in another integer value: "); den = int.Parse(Console.ReadLine()); if (den != 0) { double result = Divide(num, den); Console.WriteLine("{0}/{1} = {2}", num, den, result); } } while (den != 0); Console.ReadLine( ); }//End Main() num and den are called the actual parameters, or arguments.

28 let the value of num = 9 and the value of den = 7 double result = Divide (num, den); if (den != 0) { Console.WriteLine("{0}/{1} = {2}", num, den, result); } The Stack return address no parameters num = 9 den = 7 return here

29 static double Divide(int n, int d) { double r = (double)n / d; n++; d++; return r; } Notice that the original values in main’s stack frame don’t change. This is because n and d are names that are local to the Divide method. The Stack return address no parameters num = 9 den = 7 return address 7979 r = 1.285 n d 8 10

30 Control now returns to the point where the function was called. In this case, the return value, in eax register, is then copied to “result”. double result = Divide (num, den); The Stack return address no parameters num = 9 den = 7 result = 1.285 1.285 eax

31 Pass By Reference When a parameter is passed by reference, a reference to the value is made and passed to the method on the run-time stack.

32 static double Divide(ref int n, ref int d) { double r = (double)n / d; n++; d++; return r; } the keyword ref denotes that this parameter is passed by reference!

33 double result = Divide (ref num, ref den); Console.WriteLine("{0}/{1} = {2}", num, den, result); The Stack return address no parameters num = 9 den = 7 result = ?

34 double result = Divide (ref num, ref den); Console.WriteLine("{0}/{1} = {2}", num, den, result); The Stack return address no parameters num = 9 den = 7 result = ? Return here when done executing the function return address ref to den ref to num Build the stack frame to call the divide method

35 The Stack return address no parameters num = 9 den = 7 return address ref to den ref to num result = ? static double Divide(ref int n, ref int d) { double r = (double)n / d; n++; d++; return r; } n d

36 The Stack return address no parameters num = 10 den = 8 return address ref to den ref to num result = ? static double Divide(ref int n, ref int d) { double r = (double)n / d; n++; d++; return r; } n d These local variables, in main’s Stack frame, change, because d and n refer to them.

37 If you are passing simple data to a method, you should use pass-by-value avoids side effects! Rule of Thumb

38 If you need to change data in the calling method, for example swapping two values, then pass-by-reference. When Should You Pass by Reference? Objects are automatically passed by reference because it is more efficient. If a method has to return more than one value.

39 Example of Using a Side Effect Problem: Write a method that exchanges the values of two variables.

40 The exchange code ……… for exchanging integers value1 = value2; value2 = value1; int temp = value1; value1 = value2; value2 = temp;

41 Using pass by value … void Swap (int n1, int n2) { int temp = n1; n1 = n2; n2 = temp; } int num1 = 5; int num2 = 7; Swap (num1, num2); The Stack return address no parameters num1 = 5 num2 = 7 return address 5757 temp = 7 n2 n1 These are copies of num1 and num2 7575

42 Only the local variables allocated in Swap’s stack frame get swapped. The original values are not changed. To make the Swap work correctly, pass the parameters by reference.

43 Using pass by reference … void Swap (ref int n1, ref int n2) { int temp = n1; n1 = n2; n2 = temp; } int num1 = 5; int num2 = 7; Swap (ref num1, ref num2); The Stack return address no parameters num1 = 5 num2 = 7 return address ref to num2 ref to num1 temp = 7 n2 n1 These are references to num1 and num2

44 Using pass by reference … void Swap (ref int n1, ref int n2) { int temp = n1; n1 = n2; n2 = temp; } int num1 = 5; int num2 = 7; Swap (ref num1, ref num2); The Stack return address no parameters num1 = 7 num2 = 5 return address ref to num2 ref to num1 temp = 7 n2 n1 So … the changes occur to num1 and num2

45 Mixed Parameter Lists It is perfectly valid to mix pass-by-value and pass-by-reference parameters in the same method: void MethodTwo (ref int num1, int num2);

46 Method Overloading In C# you can give two different methods the identical method name (but with different parameters) This is called method overloading. When a method is invoked, the compiler figures out which of the methods to use, based on the method name and the number, type and order of parameters.

47 Example static int Max (int n1, int n2) { if ( n1 < n2 ) return n2; else return n1; } static int Max (int n1, int n2, int n3) { if ( n1 < n2 ) if ( n2 < n3 ) return n3; else return n2; else if ( n1 < n3 ) return n3; else return n1; } this method has two parameters this method has three parameters int biggest = Max (5, 3); int largest = Max (5,3,7); this code will invoke this method

48 Method Signature A method’s signature refers to the method name and the number, sequence and type of parameters. A method is overloaded when the methods have the Same name but have different signatures.

49 Type Conversion and Overloading static double Mpg (double miles, double gallons) { return (miles / gallons); } if this method is called with the following code … int m = 15; int g = 3; double result = Mpg (m, g); m and g will be converted to double when they are passed to the method.

50 So … what happens if you also have this method in your program? int Mpg (int goals, int misses) { return ( goals – misses); } and you make the method call int miles = 2; int gallons = 8; int result = Mpg (m,g); ?

51 Rules for Resolving Overloading 1.If there is a method whose signature exactly matches the parameters in the method call, than that method is selected first. 2.Otherwise, if there is a method whose signature matches the parameters of the method call, after doing some type upcasting conversion, then that method is selected.

52 Drivers When programming a large project, it is common to code each method independently and then write a driver method that tests that method. A driver is simply a Method that invokes through its code the method being tested in different ways to insure that the method works as expected. Driver methods are temporary code that are not part of the finished program, so they don’t have to be fancy.

53 Example // calcArea method // purpose: calculate the area of a rectangular region // parameters: a integer length l and an integer width w // returns: an integer result = l * w static int CalcArea (int l, int w) { return l * w; }

54 int main( ) { int height=0, width=0, area=0; char yes_no = ‘N’; do { Console.WriteLine(“--------------------------"; Console.Write(“Enter an integer height: “); height = int.Parse(Console.ReadLine( ) ); Console.Write(“Enter an integer width: “); width = int.Parse(Console.ReadLine( ) ); area = CalcArea (height, width); Console.WriteLine(“The area = {0}“, area); Console.Write(“Test another pair of values (y or n): “); yes_no = char.Parse(Console.ReadLine( ) ); yes_no = char.ToLower(yes_no); } while (yes_no == 'y'); }//End Main() the Driver method

55 Once a method has been debugged and you are satisfied that it contains no errors, then move on to creating and testing the next method. Each method should be tested in a program where it is the only untested component in the program. Thus, if the program fails, you know where to look for the error.

56 Stub Methods Sometimes it is impossible to test one method without using some other method which may not yet be written or debugged. In these cases you can write a simplified version of the required method that only delivers sufficient data to test the other method. These simplified methods are called stubs. Another purpose of a stud method is to be skeleton as a place holder to remind us that we need to write such a method.

57 Example If we were testing some method that depended on the CalcArea method, and the CalcArea method had not yet been written and tested, we could provide a stub that might look like this -- int CalcArea ( int w, int l) { return 100; } the method does not calculate the area correctly, but just getting some data returned might be sufficient to test the other method.

58 Practice Write a method, Add( ), that takes two integer parameters. The parameters are passed by value. The method returns the sum as an integer.

59 Practice Write a method, Add( ), that takes two integer parameters. The parameters are passed by reference. The method returns the sum as an integer.

60 Practice Write a Main( ) method that gets two values from the user and then calls the Add method. Pass the parameters by value. Then get two more values from the user. Call the add method but this time pass the parameters by reference.

61 Practice Write a program that converts time in 24 hour notation to its equivalent time in 12 hour notation. For example, 1320 would convert to 1:20pm. Write a method that does the conversion. How will you pass the parameters? Could you have used this method in the first project that you did?

62 We want to write a program that tells what coins to give for any amount of change from 1 to 99 cents. For example, for 86 cents, the program should output something like 86 cents can be given as 3 quarter(s) 1 dime(s) and 1 penny(pennies) Only use coin denominations of 25 cents ( quarters ), 10 cents ( dimes ), and 1 cent ( pennies ). Your program should use a method of the following form: void ComputeCoins ( int coinValue, ref int number, ref int left ); For example, if the amount left is 86 cents, and the coinValue is 25, the value of number will be 3 and the new amount left will be 11. Practice


Download ppt "Method Parameters and Overloading. Topics The run-time stack Pass-by-value Pass-by-reference Method overloading Stub and driver methods."

Similar presentations


Ads by Google