在oracle 中使用()语句打开游标,执行查询,并识别活动集
A. RUN
B. FETCH
CLOSE
D. OPEN
仿照如下代码,改造HighArray项目中的display方法,实现在控制台输出数组所有元素的功能。/*** Stream用于输出数组* @author Administrator**/public class LambdaOutputNumbers {public static void main(String[] args) {// way 1Arrays.asList(1,2,3,4,5).stream().forEach(System.out::println);// way 2int[] a = {1,2,3,4,5,6,6};Arrays.stream(a).forEach(System.out::println);// way 3String s = Arrays.stream(a). // 1.把数组a包装为stream对象boxed(). // 2.把a中的基本类型元素变为引用类型,如int -> Integermap(i -> i.toString()). // 3.整数转换为字符串distinct(). // 4.去重collect(Collectors.joining(",")); // 5.合并为字符串,用逗号分隔开。System.out.println(s); // 6.输出}}