{ IO.print("①"); return 0; }); IO.print("②"); s = s.limit(1); s = s.peek(x -> IO.print("③")); IO.println("④"); s.forEach(x -> IO.print("⑤")); } 選択肢 1. ① ② ③ ④ ⑤ 2. ② ④ ① ③ ⑤ 3. ① ② ④ ③ ⑤ 4. コンパイルエラー
{ IO.print("①"); return 0; }); IO.print("②"); s = s.limit(1); s = s.peek(x -> IO.print("③")); IO.println("④"); s.forEach(x -> IO.print("⑤")); } 選択肢 1. ① ② ③ ④ ⑤ 2. ② ④ ① ③ ⑤ 3. ① ② ④ ③ ⑤ 4. コンパイルエラー
protected final Sink<? super E_OUT> downstream; public ChainedReference(Sink<? super E_OUT> downstream) { this.downstream = Objects.requireNonNull(downstream); } ......