- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我开始学习 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/
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能在这里 on-t
我是 Java 编程新手。我只是在做一个程序来使用复选框选择性别。但是当我运行该程序时,我收到错误 Myframe is not abstract and does not override abst
$(window.frames['myframe'].document.getElementById('frameid')) 此语句有时在 Firefox 中返回 null,但在任何其他浏览器中都能正
我将 Xcode 更新到版本 8.3 (8E162) 并且在我的单元测试文件中我有这个警告: Implicit import of bridging header 'myframe-Bridging-
我在aspx页面中有一个iframe,我必须检查readyState条件,如下所示,请让我知道如何使用javascript获取iframe控件的readystate。 window.
打开新 Jframe 的最佳方式是什么? 这个: java.awt.EventQueue.invokeLater(() -> { JFrame f = new Main();
我是一名优秀的程序员,十分优秀!