Java: making List from primitive array using Stream API

后端 未结 3 1060
名媛妹妹
名媛妹妹 2021-01-14 14:40

I\'m trying to make a List from a primitive array

int[] values={4,5,2,3,42,60,20};
List greaterThan4 =
Arrays.stream(values)
        .filter(v         


        
3条回答
  •  盖世英雄少女心
    2021-01-14 14:49

    You can change int[] values={4,5,2,3,42,60,20}; to Integer[] values={4,5,2,3,42,60,20}; because currently you are passing an array of primitive type(int) but should you pass array of object i.e. Integer

提交回复
热议问题