gpt4 book ai didi

java - 从数组执行的操作

转载 作者:行者123 更新时间:2023-12-01 23:49:38 24 4
gpt4 key购买 nike

我的 Java JComboBox 是由循环数组组成的

假设组合框将列出:

"Argentina Vs USA" // array[0]
"Brazil Vs Canada" // array[1]
"Canada Vs Netherland" // array[2]
"Holland Vs Netherland" // array[3]

然后一旦在...中选择了一个选项。

actionPerformed(ActionEvent e){
JComboBox cb = (JComboBox)e.getSource();
String countryVScountry = (String)cb.getSelectedItem();
//I need help here, I don't want to get the String, but the
//array number instead.
//e.g. I choose "Brazil Vs Canada"
//What method should I use to make it return "1"?
//then if I choose "Holland Vs Netherland", it will return 3
}

我不想获取字符串,而是获取数组编号。例如我选择“巴西对阵加拿大”

  • 我应该用什么方法让它返回“1”?
  • 那么如果我选择“Holland Vs Netherland”,它会返回3

最佳答案

使用getSelectedIndex()而不是 getSelectedItem()

关于java - 从数组执行的操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16491163/

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