非静态字段、方法或属性需要对象引用

本文关键字:属性 对象引用 方法 静态 字段 | 更新日期: 2023-09-27 17:57:35

我有一个类,我想从中从组合框和文本框中获取值,但当我传递值时,它显示以下错误:

An object reference is required for the non-static field, method, or property 

这是代码

public class Device1
{
        public int dwMachineNumber = cboMachineNo.SelectedIndex;
        public int dwBaudrate = 9600;
        public int dwCommPort = CboComPort.SelectedIndex;
        public string dwIPAddress = tbIPAdd.Text.Trim();
        public int dwPort = int.Parse(tbPort.Text.Trim());
        public int dwPassWord = int.Parse(tbPwd.Text.Trim());
}
private bool OpenDevice(int flag)
{
    bool result = false;   
    int DEVICE_BUSY = 0;
    Device1 dww = new Device1();
    try{
       result = OpenCommPort(dww.dwMachineNumber,
                       dww.dwBaudrate, 
                       dww.dwCommPort, 
                       dww.dwIPAddress, 
                       dww.dwPassWord,
                       dww.dwPort,
                       flag);
}

非静态字段、方法或属性需要对象引用

很难完全回答,因为您的代码示例不完整。但对这个错误的解释可能会有所帮助。

基本上,您试图静态地调用另一个类上的方法或属性,但该方法或属性没有标记为静态。

看看这个例子,它不会编译并抛出你得到的错误:

public class Class1
{
    public void DoSomething()
    {
    }
}
public class Class2
{
    public Class2()
    {
        Class1.DoSomething();
    }
}

要解决这个问题,我们需要使DoSomething方法静态,如下所示:

public class Class1
{
    public static void DoSomething()
    {
    }
}
public class Class2
{
    public Class2()
    {
        Class1.DoSomething();
    }
}

现在将进行编译,如果您不希望该方法是静态的,另一个选项是在调用它之前创建一个实例:

public class Class1
{
    public void DoSomething()
    {
    }
}
public class Class2
{
    public Class2()
    {
        Class1 myClass1 = new Class1();
        myClass1.DoSomething();
    }
}

如果您的错误发生在线路上:

public int dwCommPort = CboComPort.SelectedIndex;

我怀疑你把组合框的名称弄错了,或者intellisense在你没有注意到的情况下选择了错误的项目。我注意到你的组合框名称以"cbo"开头,但这个有大写,所以我怀疑这里的名称是错误的。

这里,我认为这就是你想要做的。

您可能想创建Device1类,如下所示:

public class Device1
{
    public int dwMachineNumber;
    public int dwBaudrate;
    public int dwCommPort;
    public string dwIPAddress;
    public int dwPort;
    public int dwPassWord;
    public Device1(int dwMachineNumber, int dwBaudrate, int dwCommPort, string dwIPAddress, int dwPort, int dwPassWord)
    {
        this.dwMachineNumber = dwMachineNumber;
        this.dwBaudrate = dwBaudrate;
        this.dwCommPort = dwCommPort;
        this.dwIPAddress = dwIPAddress;
        this.dwPort = dwPort;
        this.dwPassWord = dwPassWord;
    }
}

然后,在Winforms表单的代码后面,你需要添加类似的内容:

    private void btnMyButton_Click(object sender, EventArgs e)
    {
        Device1 myDevice1 = new Device1(cboMachineNo.SelectedIndex, 9600, cboComPort.SelectedIndex, tbIPAdd.Text.Trim(), int.Parse(tbPort.Text.Trim(), int.Parse(tbPwd.Text.Trim());
        // Now do something with your populated Device1 object.
    }

对于本例,我将代码添加到按钮的事件处理程序中。你需要把它添加到你想要的地方。

此代码将从winform中获取值,并将它们传递给类。我相信这就是你想要做的。

我不确定从哪里开始,但第一步是您可能想要为类创建一个构造函数。类似于:

    public class Device1
    {
        public int dwMachineNumber;
        public int dwBaudrate;
        public int dwCommPort;
        public string dwIPAddress;
        public int dwPort;
        public int dwPassWord;
        public Device1(int machineNumber, int baudRate, int commPort, 
            string IPAddress, int port, int password)
        {
            dwMachineNumber = machineNumber;
            dwBaudrate = baudRate;
            dwCommPort = commPort;
            dwIPAddress = IPAddress;
            dwPort = port;
            dwPassWord = password;
        }
    }

现在,在您的winform/网页中,任何触发要调用的OpenDevice方法的操作都将负责构建Device1对象,然后您可以将其传递到OpenDevice方法中。

从winform背后的代码中,您需要添加对象创建。我想是按下按钮。。。

protected void OnClick(object sender, EventArgs e)
{
    Device1 dww=new Device1(cboMachineNo.SelectedIndex,
        9600,
        CboComPort.SelectedIndex,
        tbIPAdd.Text.Trim(),
        int.Parse(tbPort.Text.Trim()),
        int.Parse(tbPwd.Text.Trim())
    );
    OpenDevice(flagValue,dww);
}
private bool OpenDevice(int flag, Device1 dww)
{
    bool result = false;
    int DEVICE_BUSY = 0;
    try
    {
        result = OpenCommPort(dww.dwMachineNumber,
            dww.dwBaudrate, dww.dwCommPort, dww.dwIPAddress, dww.dwPassWord,
            dww.dwPort, flag);
    }
}

请注意,您使用的是组合框中的SelectedIndex,而您可能需要Int32.Parse(cboMachineNo.SelectedValue),其他组合框也是如此。

相关文章: