我有一个像下一个数组:
this.ntpServers[0][0] = "Global";
this.ntpServers[0][1] = "pool.ntp.org";
this.ntpServers[1][0] = "Africa";
this.ntpServers[1][1] = "africa.pool.ntp.org";
this.ntpServers[2][0] = "Asia";
this.ntpServers[2][1] = "asia.pool.ntp.org";
this.ntpServers[3][0] = "Europe";
this.ntpServers[3][1] = "europe.pool.ntp.org";
this.ntpServers[4][0] = "North America";
...
this.ntpServers[85][0] = ...
this.ntpServers[85][1] = ...
我在另一个字符串中有一个国家,我正在尝试使用下一个代码来比较列表中是否存在,但是当它必须为真时,它不会返回真。如果我检查“亚洲”,那将是真的。但有些不对劲。
gettedCountry 是一个字符串
public int existNTP(String[][] list) {
if(Arrays.asList(list).contains(gettedCountry)){
Log.i("Found", "Found");
}
return position;
}
感谢您的帮助。