什么是C#类的静态成员?

我们可以使用static关键字将类成员定义为static。当我们将一个类的成员声明为静态成员时,这意味着无论创建了多少个该类的对象,静态成员只有一个副本。

关键字static表示该类仅存在成员的一个实例。静态变量用于定义常量,因为可以通过调用该类而不创建其实例来检索其值。静态变量可以在成员函数或类定义之外初始化。您也可以在类定义中初始化静态变量。

以下是一个例子-

示例

using System;

namespace StaticVarApplication {

   class StaticVar {

      public static int num;

      public void count() {

         num++;

      }

      public int getNum() {

         return num;

      }

   }

   class StaticTester {

      static void Main(string[] args) {

         StaticVar s1 = new StaticVar();

         StaticVar s2 = new StaticVar();

         s1.count();

         s1.count();

         s1.count();

         s2.count();

         s2.count();

         s2.count();

         Console.WriteLine("Variable num for s1: {0}", s1.getNum());

         Console.WriteLine("Variable num for s2: {0}", s2.getNum());

         Console.ReadKey();

      }

   }

}

输出结果

Variable num for s1: 6

Variable num for s2: 6

以上是 什么是C#类的静态成员? 的全部内容, 来源链接: utcz.com/z/340937.html

回到顶部