5

我是 C# 的新手,我在从Main()方法调用函数时遇到了一点问题。

class Program
{
    static void Main(string[] args)
    {
        test();
    }

    public void test()
    {
        MethodInfo mi = this.GetType().GetMethod("test2");
        mi.Invoke(this, null);
    }

    public void test2()
    { 
        Console.WriteLine("Test2");
    }
}

我得到一个编译器错误test();

非静态字段需要对象引用。

我还不太了解这些修饰符,所以我做错了什么?

我真正想做的是在test()里面有代码,Main()但是当我这样做时它给了我一个错误。

4

3 回答 3

7

只需将所有逻辑放到另一个类中

 class Class1
    {
        public void test()
        {
            MethodInfo mi = this.GetType().GetMethod("test2");
            mi.Invoke(this, null);
        }
        public void test2()
        {
            Console.Out.WriteLine("Test2");
        }
    }

  static void Main(string[] args)
        {
            var class1 = new Class1();
            class1.test();
        }
于 2014-04-10T19:43:02.770 回答
7

如果您仍想将其test()作为实例方法:

class Program
{
    static void Main(string[] args)
    {
        Program p = new Program();
        p.test();
    }

    void Test()
    {
        // I'm NOT static
        // I belong to an instance of the 'Program' class
        // You must have an instance to call me
    }
}

或者更确切地说使它成为静态的:

class Program
{
    static void Main(string[] args)
    {
        Test();
    }

    static void Test()
    {
        // I'm static
        // You can call me from another static method
    }
}

获取静态方法的信息:

typeof(Program).GetMethod("Test", BindingFlags.Static);
于 2014-04-10T19:44:31.830 回答
1

该方法必须是静态的才能调用它。

于 2014-04-10T19:39:13.547 回答