gpt4 book ai didi

C# 类 : Accesing methods through instances

转载 作者:行者123 更新时间:2023-11-30 19:46:08 25 4
gpt4 key购买 nike

我可以从类的实例访问方法吗?示例:

class myClass
{
private static int n = 0;

public static myClass()
{ n = 5;}

public static void Afis()
{
Console.WriteLine(n);
}

}

在空白 Main 中:

static void Main()
{
myClass m = new myClass();
m.Afis();
}

这给了我:cannon be accessed with an instance referece。是因为我声明函数是静态的吗?如果是这样,我什么时候应该使用 static,什么时候不应该,因为在 C++ 中,如果我用 static 声明一些东西,它只初始化一次。 c#也是这样吗?

最佳答案

您需要使用类名而不是变量名来访问static 方法。

myClass.Afis();

我已将链接附加到 Static Classes and Static Class Members编程指南,如您所问,何时应该使用它们以及何时不使用它们。

编程指南的一点努力:

A static class can be used as a convenient container for sets of methods that just operate on input parameters and do not have to get or set any internal instance fields. For example, in the .NET Framework Class Library, the static System.Math class contains methods that perform mathematical operations, without any requirement to store or retrieve data that is unique to a particular instance of the Math class.

关于C# 类 : Accesing methods through instances,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9190209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com