从另一个类调用方法而不将其设为静态

发布于 2025-01-19 23:28:44 字数 380 浏览 0 评论 0原文

我尝试调用另一个类的方法。这是一个示例:

public class Students
{
    public void Printing()
    {
        Console.WriteLine(grade);
    }
}

这是主要的:

static void Main(string[] args)
{
    Students.Printing();
}

Visual Studio,具有以下例外:非静态字段需要对象引用,一种属性“学生”的方法。printing()。我的问题是,我如何在 main 中打印打印而不使其变得静态?

I try to call a method from another class. Here is an example:

public class Students
{
    public void Printing()
    {
        Console.WriteLine(grade);
    }
}

And here is the Main:

static void Main(string[] args)
{
    Students.Printing();
}

Visual Studio with the following exception: An object reference is required for the non-static field, a method to property 'Students.Printing()'. My question is how do I call Printing from Main without making it static?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

歌入人心 2025-01-26 23:28:44

您可以在不进行测试的情况下执行以下操作:

static void Main(string[] args)
{
     new Students().Printing();
}

以静态方法,您需要实例化无静态类才能访问其成员。

You can do the following without testing it:

static void Main(string[] args)
{
     new Students().Printing();
}

In static method you need to instantiate none static class to be able to access its members.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文