java+long.builder_Java LongStream.Builder accept()用法及代码示例

LongStream.Builder accept(long t)用于在流的构建阶段将元素插入到元素中。它接受要构建的流的元素。

用法:

void accept(long t)

参数:此方法接受强制参数t,该参数是要输入到流中的元素。

Exceptions:当构建器已经转换到构建状态时,此方法将引发IllegalStateException。这表示流已进入构建阶段,现在不能更改。因此,不再有其他元素可以被接受到流中。

下面是说明accept()方法的示例:

范例1:

// Java code to show the implementation

// of LongStream.Builder accept(long t)

import java.util.stream.LongStream;

class GFG {

// Driver code

public static void main(String[] args)

{

// Declaring an empty Stream

LongStream.Builder b = LongStream.builder();

// Inserting elements into the stream

// using LongStream.Builder accept(long t)

b.accept(4L);

b.accept(5L);

b.accept(6L);

b.accept(7L);

// Creating the Stream

// The stream has now entered the built phase

// printing the elements

System.out.println("Stream successfully built");

b.build().forEach(System.out::println);

}

}

输出:

Stream successfully built

4

5

6

7

范例2:为了说明IllegalStateException

// Java code to show the implementation

// of LongStream.Builder accept(T t)

import java.util.stream.LongStream;

class GFG {

// Driver code

public static void main(String[] args)

{

// Declaring an empty Stream

LongStream.Builder b = LongStream.builder();

// using LongStream.Builder accept(T t)

b.accept(4L);

b.accept(5L);

b.accept(6L);

b.accept(7L);

// Creating the Stream

// The stream has now entered the built phase

// printing the elements

System.out.println("Stream successfully built");

b.build().forEach(System.out::println);

// Trying to accept another element into the stream

// Since the Stream is in built phase

// This operation is not possible now

// Hence accept() will throw exception now

try {

b.accept(50L);

}

catch (Exception e) {

System.out.println("Exception thrown "

+ "when now accepting element into the stream:"

+ e);

}

}

}

输出:

Stream successfully built

4

5

6

7

Exception thrown when now accepting element into the stream:java.lang.IllegalStateException

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值