Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why doesn't Java 8's Predicate<T> extend Function<T, Boolean>

If I wrote the Predicate interface, I'd want to encode in the interface the fact that it's just a function that returns a primitive boolean, like this:

@FunctionalInterface public interface Predicate<T> extends Function<T, Boolean> {      boolean test(T t);      @Override     default Boolean apply(T t) {         return Boolean.valueOf(test(t));     } } 

I was wondering, is there a compelling reason Java 8 API designers chose to keep the Predicate completely separate from Function? Is there some evidence that they considered doing so and decided against it? I guess similar question goes for all the other 'special' functional interfaces like Consumer (could be Function<T, Void>), Supplier (Function<Void, T>) and primitive functions like IntFunction (Function<Integer, T>).

I haven't thought very deeply and thoroughly about all the ramifications of this, so I'm probably missing something.

EDIT: Some of the answers emphasize the semantic distinction between apply and test. I'm not saying I don't appreciate the distinction, and I agree that it's beneficial to have this distinction. What I don't understand is why a Predicate is nevertheless not also a Function in the same way as, e.g., a List is a Collection or Double is a Number, which is an Object.

If Predicate (and all the other special generic functional interfaces, such as Consumer, Supplier, IntUnaryOperator etc.) had this relation with Function, it would allow one to use it in place where Function parameter is expected (what comes to mind is composition with other functions, e.g. calling myFunction.compose(myPredicate) or to avoid writing several specialized functions in an API when such auto(un)boxing implementation as described above would be sufficient)

EDIT 2: Looking at openjdk lambda project I found that primitive functional interfaces used to extend Function up until this commit from Brian Goetz on 2012-12-19. I couldn't find specific reasons for the change on any of the lambda-dev or JSR experts group mailing lists around that time.

like image 599
mkadunc Avatar asked Mar 27 '14 09:03

mkadunc


People also ask

Does a predicate return boolean?

Predicate in general meaning is a statement about something that is either true or false. In programming, predicates represent single argument functions that return a boolean value.

What is the use of predicate in Java 8?

In Java 8, Predicate is a functional interface, which accepts an argument and returns a boolean. Usually, it used to apply in a filter for a collection of objects.

Which of the below is the functional method of predicate T interface?

Predicate<T> is a generic functional interface that represents a single argument function that returns a boolean value (true or false). This interface available in java. util. function package and contains a test(T t) method that evaluates the predicate of a given argument.

How does predicate work in Java?

The predicate is a predefined functional interface in Java defined in the java. util. Function package. It helps with manageability of code, aids in unit-testing, and provides various handy functions.


2 Answers

The method in Predicate<T> returns boolean. The method in Function<T, Boolean> returns Boolean. They are not the same. Although there is autoboxing, Java methods don't use wrapper classes when primitives would do. Also, there are differences like Boolean can be null while boolean can't.

It's even more different in the case of Consumer<T>. The method in Consumer<T> has return type void, which means it can implicitly return or return using return;, but the method in Function<T, Void> must return using return null; explicitly.

like image 134
newacct Avatar answered Sep 22 '22 23:09

newacct


There is no need for such a suspicious inheritance hierarchy. These functional interfaces are inter-changable.

Function<A,Boolean> f1=…; Predicate<A>        p1=…;  Predicate<A>        p2=f1::apply; Function<A,Boolean> f2=p1::test; 

This works in both directions. So why should there be an inheritance relationship advertising one specific direction?

like image 21
Holger Avatar answered Sep 22 '22 23:09

Holger