Java Util Function – Operator / UnaryOperator

Parametre alarak o parametre ile aynı veri tipinde sonuç üretirler. Lambda ile kullanıldığında applye metotu override edilmektedir. Java Util Function paketi icersindeki Function interfacesine benzerlik göstermektedir.

UnaryOperator<Integer> a= (x)->x*2;
     System.out.println(a.apply(3));
BinaryOperator<Integer> binaryOperator = (x,y)->x*y;
      System.out.println(binaryOperator.apply(3,5));

Operator Çeşitleri

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *