在C#中,const 和 static 都用于定义类成员,但有着不同的用途和行为。
示例:
public class MyClass
{
public const int MyConstant = 100;
}
在其他地方使用常量:
int value = MyClass.MyConstant;
示例:
public class MyClass
{
public static int MyStaticField;
public static void MyStaticMethod()
{
// 静态方法的实现
}
}
在其他地方使用静态成员:
MyClass.MyStaticField = 10;
MyClass.MyStaticMethod();
总结:
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 在C#里怎样优化数据约束的性能