readonly Fields
You might want to create a version of the Time class that is responsible for providing public static values representing the current time and date. Example 4-13 illustrates a simple approach to this problem.
Example 4-13. Using static public constants
using System;
namespace StaticPublicConstants
{
public class RightNow
{
// public member variables
public static int Year;
public static int Month;
public static int Date;
public static int Hour;
public static int Minute;
public static int Second;
static RightNow( )
{
DateTime dt = DateTime.Now;
Year = dt.Year;
Month = dt.Month;
Date = dt.Day;
Hour = dt.Hour;
Minute = dt.Minute;
Second = dt.Second;
}
}
public class Tester
{
static void Main( )
{
Console.WriteLine( "This year: {0}",
RightNow.Year.ToString( ) );
RightNow.Year = 2008;
Console.WriteLine( "This year: {0}",
RightNow.Year.ToString( ) );
}
}
}
Output:
This year: 2007
This year: 2008This works well enough, until someone comes along and changes one of these values. As the example shows, the RightNow.Year value can be changed, for example, to 2008. This is clearly not what we'd like.
You'd like to mark the static values as constant, but that is not possible because you don't initialize them until the static constructor is executed. C# provides the keyword readonly for exactly this purpose. If you change the class member variable declarations as follows:
public static readonly int Year; public static readonly int Month; public static readonly int Date; public static ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access