似乎无法理解为什么导入在类中不起作用
import javax.swing.*;
public class Main {
public static void main(String[] args) {
JFrame frame = new JFrame("Test");
frame.setSize(300,300);
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
public class Test{
JFrame frame = new JFrame("Test");
frame.setSize(300,300);
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setVisible(true);
}
我正在与 intellij 合作 和java 11 它只是说“无法解析符号” 代码在 main 中工作
您在类 Test 中缺少方法定义。