所以我是GUI新手,我有以下代码:
import javax.swing.*;
public class GUItest
{
String number = JOptionPane.showInputDialog("Enter a number betch");
int num_1 = Integer.parseInt(number);
int product = (num_1*2);
JOptionPane.showMessageDialog(null, "Your product is" + product,"Title", JOptionPane.PLAIN_MESSAGE)
}
所以我的问题是我在第一种情况下使用JOption
时的问题(我的意思是showInputDialog
)它没有问题但是当我尝试使用showMEssageDialog
下拉时菜单甚至不会出现,并弹出许多不同的语法错误。
答案 0 :(得分:2)
我将尝试详细说明我的朋友@YoungDanEn的评论:
import javax.swing.*;
public class GUItest
{
public static void main (String args[])
{
String number = JOptionPane.showInputDialog("Enter a number betch");
int num_1 = Integer.parseInt(number);
int product = (num_1*2);
JOptionPane.showMessageDialog(null, "Your product is" + product,"Title",JOptionPane.PLAIN_MESSAGE);
}
}
您必须定义入口点,因此对于上面的类,我们需要定义main方法。