Define methods that return a value and accept parameters : Class Method « Class Interface « C# / C Sharp






Define methods that return a value and accept parameters

Define methods that return a value and accept parameters
/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example5_3.cs illustrates how to define methods
  that return a value and accept parameters
*/


// declare the Car class
class Car
{

  public int yearBuilt;
  public double maximumSpeed;

  // the Age() method calculates and returns the
  // age of the car in years
  public int Age(int currentYear)
  {
    int age = currentYear - yearBuilt;
    return age;
  }

  // the Distance() method calculates and returns the
  // distance traveled by the car, given its initial speed,
  // maximum speed, and time for the journey
  // (assuming constant acceleration of the car)
  public double Distance(double initialSpeed, double time)
  {
    return (initialSpeed + maximumSpeed) / 2 * time;
  }

}


public class Example5_3
{

  public static void Main()
  {

    // declare a Car object reference and
    // create a Car object
    System.Console.WriteLine("Creating a Car object and " +
      "assigning its memory location to redPorsche");
    Car redPorsche = new Car();

    // assign values to the fields
    redPorsche.yearBuilt = 2000;
    redPorsche.maximumSpeed = 150;

    // call the methods
    int age = redPorsche.Age(2001);
    System.Console.WriteLine("redPorsche is " + age + " year old.");
    System.Console.WriteLine("redPorsche travels " +
      redPorsche.Distance(31, .25) + " miles.");

  }

}

           
       








Related examples in the same category

1.Method Attributes
2.Class a class methodClass a class method
3.Call class methods 2Call class methods 2
4.Method overloading testMethod overloading test
5.Add a method to BuildingAdd a method to Building
6.A simple example that uses a parameterA simple example that uses a parameter
7.Add a method that takes two argumentsAdd a method that takes two arguments
8.Use a class factoryUse a class factory
9.Return an arrayReturn an array
10.Demonstrate method overloadingDemonstrate method overloading
11.Automatic type conversions can affect overloaded method resolutionAutomatic type conversions can affect 
   overloaded method resolution
12.A simple example of recursionA simple example of recursion
13.Overloading ClassesOverloading Classes
14.C# Classes Member FunctionsC# Classes Member Functions
15.change field value in a method