配列の末尾に文字列パラメーターを追加する必要があります。String が配列に既に存在する場合は、例外をスローします。知らない。誰でも助けることができますか?これは私がこれまでに持っているものです
public static void addCity (String city) throws Exception
{
for (int i = 0; i < MAX_CITIES;i++)
{
if (city == cityNames[i])
throw new Exception("This city already exists");
}
String [] temp = new String[cityNames.length+1];
for (int i = 0; i < cityNames.length;i++) {
temp[i] = cityNames[i];
}
temp[temp.length-1] = city;
cityNames = temp;
manyItems++;
}