非静态变量,这不能从静态内容Java中引用

时间:2013-12-14 04:28:09

标签: java swing class breeze non-static

所以我现在正在教自己用大学的java书籍编写GUI编码,我理解这一切,但我发现这个错误,我很难过。

import javax.swing.*;
import BreezySwing.*;
public class gui
{
    public class ConvertWithGUI extends GBFrame
    {
        private JLabel          fahrenheitLabel;
        private JLabel          celsiusLabel;
        private DoubleField     fahrenheitField;
        private DoubleField     celsiusField;
        private JButton         fahrenheitButton;
        private JButton         celsiusButton;

            public ConvertWithGUI()
            {
                fahrenheitLabel = addLabel       ("Fahrenheit" ,1,1,1,1);
                celsiusLabel    = addLabel       ("Celsius"    ,1,2,1,1);

                fahrenheitField = addDoubleField (32.0         ,2,1,1,1);
                celsiusField    = addDoubleField (0.0          ,2,2,1,1);
                fahrenheitButton= addButton      (">>>>>>"     ,3,1,1,1);
                celsiusButton   = addButton      ("<<<<<<"     ,3,2,1,1);
            }

            public void buttonClicked (JButton buttonObj)
            {
                Thermometer thermo = new Thermometer();

                if (buttonObj == fahrenheitButton)
                {
                    thermo.setFahrenheit(fahrenheitField.getNumber());
                    celsiusField.setNumber (thermo.getCelsius());
                }
                else
                {
                    thermo.setCelsius(celsiusField.getNumber());
                    fahrenheitField.setNumber (thermo.getFahrenheit());
                }
            }
            public static void main(String[] args)
            {
                ConvertWithGUI theGUI = new ConvertWithGUI();
                theGUI.setSize(250, 100);
                theGUI.setVisible(true);

            }
    }
}

好的,所有事情都要贴上标有的部分:

ConvertWithGUI theGUI = new ConvertWithGUI();

导致错误。更具体地说,它在这一部分突出显示:

new ConvertWithGUI();

现在这个程序的基本功能是从Celsius转换为Celsius。我知道这很简单,但我不知道这个错误是什么,我正在从书中输入这个。 如果有人可以提供帮助,将不胜感激!谢谢。

2 个答案:

答案 0 :(得分:2)

public class gui
{
    ....
}

不需要上述3个陈述。源文件的名称应为ConvertwithGUI,因为它应该是文件中唯一的公共类。保持源文件简单,以便它们只包含一个公共类。

答案 1 :(得分:0)

您的类ConvertWithGUI不是静态的,因此您需要一个包含类的实例来构造它。刚

public static /*<-- Add this*/ class ConvertWithGUI extends GBFrame