DekGenius.com
Team LiB   Previous Section   Next Section

8.3 Constructors

In Chapter 8, notice that the statement that creates the Time object looks as though it is invoking a Time() method:

 Time timeObject = new Time();

In fact, a member method is invoked whenever you instantiate an object. This method is called a constructor. Each time you define a class, you are free to define your own constructor, but if you don't, the compiler will provide one for you invisibly and automatically.

The job of a constructor is to create an instance of the object specified by a class and to put it into a valid state. Before the constructor runs, the object is just a blob of memory; after the constructor completes, the memory holds a valid instance of the class.

The Time class of Example 8-3 does not define a constructor. As noted earlier, if you do not declare a constructor the compiler implicitly provides one for you. The constructor provided by the compiler creates the object but takes no other action.

Any constructor that takes no arguments is called a default constructor. The constructor provided by the compiler takes no arguments, and hence is a default constructor. This terminology has caused a great deal of confusion. You can create your own default constructor, and if you do not create a constructor at all, the compiler will create a default constructor for you, by default.

If you do not explicitly initialize your member variables, they are initialized to innocuous values (integers to 0, strings to the empty string, etc.). Table 8-2 lists the default values assigned to various types.

Table 8-2. Primitive types and their default values

Type

Default value

numeric (int, long, etc.)

0

bool

false

char

'\0' (null)

enum

0

reference

null

Typically, you'll want to define your own constructor and provide it with arguments, so that the constructor can set the initial state for your object. In Example 8-4, you want to pass in the current year, month, date, and so forth, so that the object is created with meaningful data.

You declare a constructor like any other member method except:

  • The name of the constructor must be the same as the name of the class.

  • Constructors have no return type (not even void).

If there are arguments to be passed, you define an argument list just as you would for any other method. Example 8-4 declares a constructor for the Time class that accepts a single argument, an object of type DateTime. DateTime is a type provided by the .NET Framework Class Library.

Example 8-4. Creating a constructor
using System;

public class Time
{
    // private member variables
    int year;
    int month;
    int date;
    int hour;
    int minute;
    int second;
    
    // public method
    public void DisplayCurrentTime()
    {
        System.Console.WriteLine("{0}/{1}/{2} {3}:{4}:{5}", 
            month, date, year, hour, minute, second);
    }

    // constructor
    public Time(int theYear, int theMonth, int theDate,
        int theHour, int theMinute, int theSecond)
    {
        year = theYear;
        month = theMonth;
        date = theDate;
        hour = theHour;
        minute = theMinute;
        second = theSecond;
    }
}

public class Tester
{
    static void Main()
    {
        Time timeObject = new Time(2005,3,25,9,35,20);
        timeObject.DisplayCurrentTime();
    }
}

Output:
3/25/2005 9:35:20

In this example, the constructor takes a series of integer values and initializes all the member variables based on these parameters.

When the constructor finishes, the Time object exists and the values have been initialized. When DisplayCurrentTime() is called in Main(), the values are displayed.

Try commenting out one of the assignments and running the program again. You'll find that each member variable is initialized by the compiler to 0. Integer member variables are set to if you don't otherwise assign them. Remember that value types (e.g., integers) must be initialized; if you don't tell the constructor what to do, it sets innocuous values.

    Team LiB   Previous Section   Next Section