C#无法访问外部类型的非静态成员

时间:2014-06-14 17:07:23

标签: c#

你好,我是初学程序员,所以如果这个问题得到回答或没有意义,请原谅我=我。我的问题是我正在使用C#,我无法从我创建的其中一个文件中访问标签。但是这个文件有效,直到我重新启动计算机。这是代码。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Resources;

namespace Moneypoly
{
    public partial class mainForm
    {

        public class chance
        {
          public void chanceOptionOne()
          {
              discriptionPlayer1.Text = "";           
          }
        }

    }
} 

discriptionPlayer1.Text在这里给出一个错误它是错误141无法通过嵌套类型'Moneypoly.mainForm.chance'访问外部类型'Moneypoly.mainForm'的非静态成员

它应该工作,考虑它在我的其他文件中工作,代码是相同的。 其中一个文件代码如下

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Media;

namespace Moneypoly
{
    public partial class mainForm : Form 
    {
        public mainForm()
        {
            InitializeComponent();
            giantView1.SizeMode = PictureBoxSizeMode.StretchImage;
            giantView2.SizeMode = PictureBoxSizeMode.StretchImage;
            giantView1.Image = Properties.Resources.startPlayerNoOne;
            giantView2.Image = Properties.Resources.startPlayerNoOne;
            player2Roll.Visible = false;
            dicePlayer1.Visible = false;
            dicePlayer2.Visible = false;
            player1Wallet.Text = " $ " + variables.player1Wallet.ToString();
            player2Wallet.Text = " $ " + variables.player2Wallet.ToString();
        }


        private void buttonRollDice_Click(object sender, EventArgs e)
        {
            movePlayer1();
            movePlayer2();
        }

        private void mainForm_Load(object sender, EventArgs e)
        {

        }

        private void player1_Click(object sender, EventArgs e)
        {

        }

        private void player1Roll_Click(object sender, EventArgs e)
        {
            movePlayer1();
            player1Roll.Visible = false;
            player2Roll.Visible = true;
            dicePlayer1.Visible = true;
        }

        private void player2Roll_Click(object sender, EventArgs e)
        {
            movePlayer2();
            player2Roll.Visible = false;
            player1Roll.Visible = true;
            dicePlayer2.Visible = true;
        }

        private void discriptionPlayer1_Click(object sender, EventArgs e)
        {

        }

        private void discriptionPlayer2_Click(object sender, EventArgs e)
        {

        }
    }

        }

2 个答案:

答案 0 :(得分:6)

C#中的内部类与Java中的内部类不同。

Java 中,内部类可以访问其外部类:在构造期间,每个实例都存储对构造实例的父类的引用。

C#中,内部类是定义可以访问实例私有成员的类的简单方法。换句话说,当您接收存储mainForm的引用时,您可以读取/写入/修改私有字段并调用私有方法。没有外部关系这样的东西。

因此,您可以在内部类中将构造函数定义为外部,然后设置父级的字段:

namespace Moneypoly {

    public partial class mainForm {

        public class chance {

          private readonly mainForm outer;

          public chance (mainForm outer) {
              this.outer = outer;
          }

          public void chanceOptionOne() {
              outer.discriptionPlayer1.Text = "";           
          }

        }

    }
}

请注意,在构建mainForm时,您需要提供对chance的引用:可能使用this

这实际上也是Java所做的事情(除了它对程序员来说是不可见的)。

此外,在C#(和Java)中自定义以大写字母开始类的名称(以及在C#方法的情况下)。

答案 1 :(得分:-5)

这是尝试在部分主窗体类中创建一个类:

namespace Moneypoly
{
    public partial class mainForm
    {
    // UP TO HERE

        public class chance
        {
          public void chanceOptionOne()
          {
              discriptionPlayer1.Text = "";           
          }
        }

    }  // MOVE THIS BRACE
}