gpt4 book ai didi

java - JButton 无法解析为类型

转载 作者:行者123 更新时间:2023-11-29 10:17:03 24 4
gpt4 key购买 nike

我在 JButton 所在的行上遇到错误。有人可以帮忙吗?顺便说一下,这确实是很短的代码:

public class Main {
public JButton[] grid = new JButton[9];
public void init_components() {}
public void init_icons() {}
public static void main(String[] args) {}
}

最佳答案

您需要在源代码中使用适当的“导入”语句来告诉 Java “JButton”的含义。

import javax.swing.JButton;

像 Eclipse 这样的 IDE 将使您在这里入门变得更加容易。

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

24 4 0
文章推荐: java - 重新验证 JPanel 时闪烁
文章推荐: java - 如何将 Datepicker-date 转换为 Java.util.Date?
文章推荐: java - 面向对象设计 : Which is better practice?
文章推荐: java - 为什么 List list = new ArrayList() 这会导致 TypeMismatch 错误