如何在主程序的文本字段中设置文本?爪哇

时间:2019-05-23 03:07:47

标签: java static textfield non-static

我正在尝试创建一种方法,以将菜单选项打印到我的文本区域中,但是当我创建该方法并尝试对其进行调用时,出现一条错误消息,提示我不能在菜单项中使用非静态变量静态上下文。

public static void main(String args[]) {
     java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
                new User_Interface().setVisible(true);
                }
            });
            menu();
        }

    public void menu() {
            String strMenu = "hi";
            txtAreaMenu.setText(strMenu);
        }

以下是我的代码的一些图片: https://cdn.discordapp.com/attachments/580950056698380301/580953553385029683/unknown.png

这是错误: https://cdn.discordapp.com/attachments/580950056698380301/580953653503066112/unknown.png

0 个答案:

没有答案