1. 随机获得流中任意Item@Testpublic void testFindAny() { Integer integer = Stream.of(1, 2, 3) // .parallel() .findAny() .ge...