String[] enrollment = {"first Value", "second value"}
int enroll = JOptionPane.showOptionDialog(null,
"Please select your enrollment:", "Enrollment",
JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, null,
enrollment, enrollment[1]);
如何从enroll
获取值(如第一个值)并在if语句中进行比较?由于enroll返回一个整数变量。
我不认为这个问题是重复的标记,因为我只是想在整数内部获取值,存储它并稍后进行比较。
答案 0 :(得分:3)
您可能需要在if / else检查中执行类似的操作
if (enroll != JOptionPane.CLOSED_OPTION) {
System.out.println(enrollment [enroll ]);
} else {
System.out.println("No option selected".);
}
答案 1 :(得分:0)
if (enroll == 0) { // 0 here is the first thing in the enrolment array
// do something
}