當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java DoubleStream.Builder add(double t)用法及代碼示例


DoubleStream.Builder add(double t)用於在流的構建階段將元素插入到元素中。它將元素添加到正在構建的流中。

用法:

default DoubleStream.Builder add(double t)

參數:此方法接受強製參數t,該參數是要輸入到流中的元素。


Exceptions:當構建器已經轉換到構建狀態時,此方法引發IllegalStateException :。這表示流已進入構建階段,現在不能更改。因此,無法將更多元素添加到流中。

下麵是說明add()方法的示例:

範例1:

// Java code to show the implementation 
// of DoubleStream.Builder add(double t) 
  
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        // Declaring an empty Stream 
        DoubleStream.Builder b = DoubleStream.builder(); 
  
        // Inserting elements into the stream 
        // using DoubleStream.Builder add(double t) 
        b.add(4.4); 
        b.add(5.84); 
        b.add(6); 
        b.add(7.47); 
  
        // 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.4
5.84
6.0
7.47

範例2:為了說明IllegalStateException

// Java code to show the implementation 
// of DoubleStream.Builder add(T t) 
  
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        // Declaring an empty Stream 
        DoubleStream.Builder b = DoubleStream.builder(); 
  
        // using DoubleStream.Builder add(T t) 
        b.add(4.7); 
        b.add(5.9); 
        b.add(6); 
        b.add(7.785); 
  
        // 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 add another element into the stream 
        // Since the Stream is in built phase 
        // This operation is not possible now 
        // Hence add() will throw exception now 
  
        try { 
            b.add(50.784); 
        } 
        catch (Exception e) { 
            System.out.println("Exception thrown "
                               + "when now adding element into the stream:"
                               + e); 
        } 
    } 
}
輸出:
Stream successfully built
4.7
5.9
6.0
7.785
Exception thrown when now adding element into the stream:java.lang.IllegalStateException


相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 DoubleStream.Builder add(double t) in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。