1

可能重复:
为什么在使用 teststring.Join 而不是 teststring.Split 时出现“无法通过实例引用访问”?(C#)

我不确定代码有什么问题。我尝试谷歌搜索,但没有得到相关信息。

这是我的 for 循环。

          for (int i = 0; i < 5; i++)
            {
                for (int j = 0; j < 5; j++)
                {
                    slide.Move(s, i, j); // this is the problem. 
                }
            }

这是我的移动功能。根据我的说法,我认为我正在按照假设的方式调用该函数,但我无法弄清楚出了什么问题。我是相当新的语言。

         protected static void Move(string s, int x, int y)
    {
        Console.WriteLine("I am in Move function");
        try
        {
            Console.SetCursorPosition(origCol + x, origRow + y);
            Console.Write(s);
        }
        catch (ArgumentOutOfRangeException e)
        {
            Console.Clear();
            Console.WriteLine(e.Message);
        }

        for (int i = 0; i < DEFAULT_SIZE; ++i)
        {
            for (int j = 0; j < DEFAULT_SIZE; ++j)
            {
                    Console.Write("#");
                    Console.Write("\r{0}%   ", i,j);
                    //Console.WriteLine(slider[i, j]);
            }
            Console.WriteLine();
            Console.ReadKey();
        }
    }
4

2 回答 2

2

Move是一种静态方法,因此您可以使用ClassName.Move.

所以,你有两个选择。

  1. 更改slide.Move(s, i, j);为使用类名,而不是实例变量。例如,如果类名Slide那么你应该使用Slide.Move(s, i, j);.

  2. 更改Move为实例方法。

我认为选项2是要走的路。正如乔恩斯基特指出的那样。Move应该是实例方法更有意义。

于 2012-10-18T06:32:29.870 回答
1

受保护的静态无效移动(字符串 s,int x,int y)

静态成员属于类而不是类的实例。要访问它们,请在它们前面加上类的名称

[ClassName].Move(s, x, y);  //Slide.Move(x, y, z); assuming your class name is Slide

要像这样使用它,您需要删除静态修饰符

protected void Move(string s, int x, int y)
于 2012-10-18T06:34:05.717 回答