Avoid NoSuchElementException with Stream

前端 未结 3 1055
傲寒
傲寒 2020-12-08 13:09

I have the following Stream:

Stream stream = stream();

T result = stream.filter(t -> {
    double x = getX(t);
    double y = getY(         


        
相关标签:
3条回答
  • 2020-12-08 13:53

    An alternate method for replacing the Optional.get (which more likely than not fails the user's intentions with a NoSuchElementException) is with a more verbose API introduced in JDK10 termed as Optional.orElseThrow(). In author's words -

    Optional.get() is an "attractive nuisance" and is too tempting for programmers, leading to frequent errors. People don't expect a getter to throw an exception. A replacement API for Optional.get() with equivalent semantics should be added.

    Note :- The underlying implementation of both these APIs is same, yet the latter reads out more clearly that a NoSuchElementException would be thrown by default if the value is not present which inlines to the existing Optional.orElseThrow​(Supplier<? extends X> exceptionSupplier) implementation used by consumers as an explicit alternate.

    0 讨论(0)
  • 2020-12-08 13:55

    Stream#findFirst() returns an Optional which exists specifically so that you don't need to operate on null values.

    A container object which may or may not contain a non-null value. If a value is present, isPresent() will return true and get() will return the value.

    Otherwise, Optional#get() throws a NoSuchElementException.

    If a value is present in this Optional, returns the value, otherwise throws NoSuchElementException.

    An Optional will never expose its value if it is null.

    If you really have to, just check isPresent() and return null yourself.

    Stream<T> stream = stream();
    
    Optional<T> result = stream.filter(t -> {
        double x = getX(t);
        double y = getY(t);
        return (x == tx && y == ty);
    }).findFirst();
    
    if (result.isPresent()) 
        return result.get();
    return null;
    
    0 讨论(0)
  • 2020-12-08 14:07

    You can use Optional.orElse, it's much simpler than checking isPresent:

    T result = stream.filter(t -> {
        double x = getX(t);
        double y = getY(t);
        return (x == tx && y == ty);
    }).findFirst().orElse(null);
    
    return result;
    
    0 讨论(0)
提交回复
热议问题