考虑到我有两个数组,例如:
String [] countrys = {"USA", "AUSTRALIA"}; // indexes 0,1
String [] numberStates = {"50", "6"}; //indexes 0,1
我对此数组有点业余,并为相等的索引分配了正确的值。
我要寻找的是分配正确的值,例如,从美国国家/地区分配50个州,下一个是Austrlia分配6个州。
我已经搜索了类似的教程,但是我仍然不清楚如何分配2个数组的正确索引。
//complete code snippet
Unit<Length> AddCorrectNumberStateToCountry = null;
String queryCountry = “USA”
String[] countrys = {"USA", "AUSTRALIA"};
String[] numberStates = {"50", "6"};
for(int t = 0; t < countrys.length; t++) {
if (queryCountry.contains(countrys [t])) {
AddCorrectNumberStateToCountry = STATES.plus(?????);
//here need know put exactly numberStates value by check index STATES.plus(?)
}
}
潇湘沐
相关分类