gpt4 book ai didi

java - MyFrame 无法解析为变量

转载 作者:行者123 更新时间:2023-12-01 21:54:35 27 4
gpt4 key购买 nike

我开始学习 Java,但我使用 c、python、汇编、c++ 进行编程已有近六年的时间,我对这个示例有疑问。我发现 Eclipse 中出现此错误:

MyFrame cannot be resolved to a variable

这是示例代码:

MyFrame

import javax.swing.*;
import java.awt.*;

public class MyFrame extends JFrame {

JButton one=new JButton("1");
JButton two=new JButton("2");
JButton tree=new JButton("3");
JButton four=new JButton("4");
JButton five = new JButton("5");
public MyFrame() {
super("FlowÃLayout");
Container c = this.getContentPane();
c.setLayout(new FlowLayout());
c.add(one);
c.add(two);
c.add(tree);
c.add(four);
c.add(five);
setSize(300,100);
setVisible(true);
}
}

Application

public class Application {
public static void main(String args[]) {
/* THAT IS THE ERROR */ MyFrame = new MyFrame();
}
}

最佳答案

改变一下

MyFrame = new MyFrame();

new MyFrame();

关于java - MyFrame 无法解析为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34569418/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com