我拥有城市,国家和世界类,国家和世界类是数组,因为显然我需要在其中添加几个不同的国家和城市,并且我想将国家添加到我已经实例化的世界中,并将城市添加到国家中我创建的,但我不确定我应该使用什么 java 代码来执行此操作,这是我尝试编写的代码,但它无法运行:
private static void AddCountriesToWorld(World[] aWorld){
System.out.println("Entering the countries in your world");
Country[] aCountry = new Country[9];
aWorld[0]=aCountry.setName("Usa");
aWorld[1]=aCountry.setName("Europe");
aWorld[2]=aCountry.setName("Russia");
}
.
public static void main(String[] args) {
World[] aWorld = new World[15];
AddCountriesToWorld(aWorld);
}
对此的任何见解将不胜感激!谢谢!
[编辑:代码甚至不正确,我根本无法运行程序,问题是我不知道执行我描述的功能的代码,所以我没有开始。]