如何创建android.util.Pair对象的数组?

时间:2016-07-14 12:33:33

标签: java android

我正在尝试创建一对简单的数组。我得到的错误如下。

Error:(66, 101) error: generic array creation

这是我的代码:

Pair<Integer,String>[] testArray = {
             new Pair<>(0, "firstLine"),
             new Pair<>(1, "secondLine")
        };

1 个答案:

答案 0 :(得分:5)

Pair<Integer, String>[] test = new Pair[] {
        new Pair(1, "firstLine"),
        new Pair(2, "secondLine")
};