これは私が取り組んでいるプレゼンテーションの第2部です。
String temp;
// Create the class
Hello helloUser = new Hello();
//Get the users name
temp = JOptionPane.showInputDialog("Please enter your name?");
helloUser.setName(temp);
String hello = helloUser.name(helloUser.getName());
//Greet the user
temp = JOptionPane.showInputDialog(null, hello, "Feeling",
JOptionPane.QUESTION_MESSAGE, null, new Object[]{
"Great", "Good", "Been Better"
});
helloUser.setFeeling(temp);
ユーザーの名前を取得したら、プログラムでユーザーに挨拶し、どのように行っているかを尋ねてから、回答を選択できるようにします。ユーザーに挨拶するための上記のコードは、私にこのエラーを出し続けます:
no suitable method found for showInputDialog(<null>,String,String,int,<null>,Object[]) method JOptionPane.showInputDialog(Component,Object,String,int,Icon,Object[],Object) is not applicable (actual and formal argument lists differ in length)
ユーザーに選択するリストを提供し、選択内容を一時的に保存したいと思います。JOptionPaneでそれを行うことはできますか?もしそうなら、どのように?