ArrayList中设置索引对象 - 是否可能?

时间:2018-06-07 17:04:19

标签: java arraylist table-index

是否可以在ArrayList中创建集合索引对象?

我想创建一个对象数组 - Portal类 - 并将它们编入索引数组,其大小将由用户定义。

   import java.util.ArrayList;
    import java.util.Scanner;

    public class GameFunctions
    {
        Scanner sc = new Scanner(System.in);
        private int portalsQty;
        private String[] portalNamesDB = {"name1", "name2", "name3", "name4", "name5"};
        ArrayList<Portal> portals = new ArrayList<>();

        void setPortalsQty(int portalsQty)
        {
            this.portalsQty = portalsQty;
        }

        int getPortalsQty(int portalsQty)
        {
            return portalsQty;
        }
        private void createPortals()
        {
            System.out.println("type the

 amount of portals");
        portalsQty = sc.nextInt();
        System.out.println("number of portals: " + portals.size());
        for (int i = 0;  i < portalsQty; i++)
        {
            portals.add(i,p[i]);   // CANNOT HAVE VALUES INDEXED LIKE p[i] IN ARRAYLIST
        }


    }

    private void namePortals()
    {
        int randomNo = (int)(Math.random()*portalsQty);
        for (int i = 0;  i < portalsQty; i++)
        {
            System.out.println("Random: " + randomNo);
            portals[i].setPortalName(portalNamesDB[randomNo]);
        }
    }


    public void launchGame()
    {
        createPortals();
        namePortals();


    }

}

使用表定义数组的大小使得表不可行,因为我们遇到NullPointerException。 有没有其他解决方案来制作表的动态大小并将元素编入索引?

2 个答案:

答案 0 :(得分:1)

    import java.util.HashMap;   


    HashMap<Integer, portal>portals = new HashMap<>();

    System.out.println("number of portals: " + portals.size());

    for (int i = 0;  i < portalsQty; i++)
    {
        int randomNo = (int)(Math.random()*portalsQty);

        portals.put(portalNamesDB[randomNo], i);   
    }

Mureinik和chrylis是对的,地图或HashMap可能在这里效果最好。

我添加了一个如何实现它的示例。这样,您就可以为每个门户网站提供一个名称和数量值。门户网站名称是密钥,数量编号是我的示例中的值。

我希望有所帮助!

答案 1 :(得分:0)

您可以使用从索引映射到对象的地图来模拟此行为:

Map<Integer, Portal> indexes = new HashMap<>();