import java.awt.;
import javax.swing.;
public class 窗口 extends JFrame{
package CreateJFrame
/**
* @param args
*/
public void CreateJFrame(String title){
JFrame jf=new JFrame(title);
Container container =jf.getContentPane();
JLabel jl=new JLabel("这是一个jframe窗体");
jl.setHorizontalAlignment(SwingConstants.CENTER);
container.add(jl);
container.setBackground(color.white);
jf.setVisible(true);
jf.setsize(200,150);
jf.setDefaultCloseOperation(WindowContents.EXIT_ON_CLOSE);
}
public static void main(String args[] ) {
// TODO Auto-generated method stub
new Exameple1().CreateJFrame("创建一个JFrame窗体");
}
}
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
Syntax error, insert "enum Identifier" to complete EnumHeaderName
Syntax error, insert "EnumBody" to complete EnumDeclaration
Exameple1 cannot be resolved to a type
编写代码时报错,求大神解答一下
Exameple1这是个类吧?我看你这里都没有定义或者引用。如果你是写在别的文件中,可以先引用这个类文件,这样才不会报错。不知道怎么引用的话,可以试试把光标放在Exameple1后面,然后同时按住alt+?这两个键
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。