Difference between revisions of "Parameter Passing - 2017"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(From Simulation)
 
(2 intermediate revisions by 2 users not shown)
Line 11: Line 11:
 
The parameters a and b are passed to the WriteLines.
 
The parameters a and b are passed to the WriteLines.
  
From Simulation:
+
==Example From Simulation==
 +
The following lines are in the Simulation class, and they call a method called InputCoordinate with the parameter value of 'x' and then 'y'.
 +
 
 
<syntaxhighlight lang="csharp">
 
<syntaxhighlight lang="csharp">
 
  if (menuOption == 4)
 
  if (menuOption == 4)
Line 19: Line 21:
 
         ...
 
         ...
 
         }
 
         }
 +
</syntaxhighlight>
 +
 +
The code below is the InputCoordinate method called above. The method expects to be passed a char data type, and within the method this will be called Coordinatename.
 +
 +
<syntaxhighlight lang="csharp">
 
     private int InputCoordinate(char Coordinatename)
 
     private int InputCoordinate(char Coordinatename)
 
     {
 
     {
Line 27: Line 34:
  
 
</syntaxhighlight>
 
</syntaxhighlight>
The method InputCoordinate declares x and y as int, the chars 'x' and 'y' are passed into InputCoordinate to use.
+
 
 +
This is also a function because InputCoordinate returns a value back (an int).

Latest revision as of 06:35, 26 May 2017

Parameter passing is inserting values into methods or calculations using a declared variable, rather than the raw data (strings, numbers, bools, etc.). This can be done in multiple ways, but the most often used (in the skeleton program) will be:

 int a = 10;
 string b = "yes";

 Console.WriteLine(a);
 Console.WriteLine(b);

The parameters a and b are passed to the WriteLines.

Example From Simulation

The following lines are in the Simulation class, and they call a method called InputCoordinate with the parameter value of 'x' and then 'y'.

 if (menuOption == 4)
        {
          x = InputCoordinate('x');
          y = InputCoordinate('y');
        ...
        }

The code below is the InputCoordinate method called above. The method expects to be passed a char data type, and within the method this will be called Coordinatename.

    private int InputCoordinate(char Coordinatename)
    {
      int Coordinate;
      Console.Write("  Input " + Coordinatename + " coordinate: ");
      Coordinate = Convert.ToInt32(Console.ReadLine());
      return Coordinate;

This is also a function because InputCoordinate returns a value back (an int).