Static Fields

In this chapter you will learn:

  1. How to create static fields and why static fields are useful
  2. A demo showing how to use static fields

Create static fields

Variables declared as static are, essentially, global variables. All instances of the class share the same static variable. A static variable is initialized when its class is loaded. A static variable always has a value.

If not initialized, a static variable is initialized to

  • zero for numeric values.
  • null for object references.
  • false for variables of type bool.

The following code references static field without instance.

using System;/*from j  ava2  s  . c o  m*/

class MyClass
{
   static public int myStaticValue;
}

class Program
{
   static void Main()
   {
      MyClass.myStaticValue = 5;
      Console.WriteLine("myStaticValue = {0}", MyClass.myStaticValue);
   }
}

The code above generates the following result.

Demo usage for static fields

The following shows how to use static field to count class instance. Each time a new instance is created the count would plus one.

using System;/*j  a  v a 2s.c om*/

class MyClass
{
    public MyClass()
    {
        instanceCount++;
    }
    public static int instanceCount = 0;
}

class MainClass
{
    public static void Main()
    {
        MyClass my = new MyClass();
        Console.WriteLine(MyClass.instanceCount);
        MyClass my2 = new MyClass();
        Console.WriteLine(MyClass.instanceCount);
    }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. How to create read only field
  2. How to set the initial value to a read only field in constructor
Home » C# Tutorial » Class
Classes and Structs
Encapsulation
Class and Struct Accessibility
Members
Static Members
Class
Class instance variables
Class instance Methods
Class Inheritance
Class constructor
Default constructors
Parameters of constructors
Constructor overloading
Static Constructor
Destructor
Override destructor
new operator
Class field
Static Fields
Read only field
Field default value
const value
Abstract class
Static Class
Partial type
Methods
Method local variable
Method Overloading
Method overloading with ref and out
Type conversion and method overloading
Error in Method overloading
virtual methods
Override methods
Method Parameter
Pass parameters
ref parameters
out parameters
Variable parameter length
Optional parameters
Named parameters
static method
function Return
Recursive methods
Virtual methods and polymorphism
Cast
Shadow inherited members
Seal a member
this keyword
base keyword
base and name hiding
Access Specifiers
private
public
protected
internal
Indexer
String type indexer
Multidimensional indexer
Indexer overloading
Indexer to append
Indexer logic
Properties
Properties getter and setter
Accessibilities of properties
Automatic properties
Read only and write only property
Virtual properties
Abstract Properties
Static Properties
interface
interface implementation
Explicit interface implementation
Interface inheritance
Indexer in an interface
Interface Properties
struct and interface
virtual interface implementation
as operator
is operator
null reference
Nested classes
object class
ToString method
GetHashCode
Object initialization
Extension method
Struct Instances vs. Class Instances