gpt4 book ai didi

java - eclipse编译时出现未知错误

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

public class code extends JFrame{
/**
*
*/
private static final long serialVersionUID = 1L;
public boolean flag = true;
JButton Bill;
JButton Enter;
JTextField Items;
JTextField Amount;
public java.util.List<String> Item_list = new ArrayList<String>();
public java.util.List<String> quantity = new ArrayList<String>();

public code() {
super("Market");

setLayout(new FlowLayout());
do {
Items = new JTextField("Enter the Item u wish to purchase");
add(Items);
Items.addActionListener(
new ActionListener() {
public void actionPerformed(ActionEvent e) {
command(e.getActionCommand());
}
}
);

Amount = new JTextField("Enter the quantity of the product");
add(Amount);
Amount.addActionListener(
new ActionListener() {
public void actionPerformed(ActionEvent e) {
commandInt(e.getActionCommand());
}
}
);
Bill = new JButton();
add(Bill);
Bill.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e){
flag = false;
}
}
);

} while(flag);
}

public void command(String userT) {
try {
Item_list.add(userT);
} catch(Exception e){
System.out.println("what was that");
}
}

public void commandInt(String string) {
try {
quantity.add(string);
} catch(Exception e) {
System.out.println("what was that");
}
}
}

这段代码基本上只是一个系统,您在其中输入项目和金额并将其存储在列表中,但显然有问题,因为它无法编译。此外,当它编译时,它们突出显示了 JTextField 区域。似乎没有明显的问题。

最佳答案

由于您没有指定错误或警告,我将给出一般性答案。

如果您将鼠标悬停在带下划线的单词上,它们将为您提供问题的简要描述。

在 Eclipse 中,您可以使用快捷键 alt + Enter 来获取有关如何解决问题的建议。

如果问题是错误,那么它将突出显示为红色。否则,如果是警告,则会带有黄色下划线。

错误是您编写的代码中的错误,其中警告更多的是好 friend 告诉您修复某些问题的建议。

关于java - eclipse编译时出现未知错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25097362/

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