Advertisement
sergAccount

Untitled

Sep 5th, 2020
1,531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.34 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.spec;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Main2 {
  13.     //
  14.     public static void main(String[] args) {        
  15.         //
  16.         MyOperation operation = new MyOperationImpl();
  17.         // вызываем метод определенный в интерфейсе
  18.         operation.doSomething();        
  19.         //
  20.         MyService service = new MyService();
  21.         service.invoke(operation);
  22.        
  23.         // лямбда-выражения
  24.         // лямбда-оператор:  ->
  25.         // лямбда-выражения: список параметров () -> реализация метода функционального инетрфейса
  26.         // справа - лямбда выражения
  27.        
  28.         System.out.println("Лямбда выражение:");
  29.         MyOperation operation2 = () -> {
  30.             System.out.println("реализация метода doSomething!!!");        
  31.         };        
  32.         operation2.doSomething();
  33.        
  34.         MyOperation operation3 = () -> {};
  35.         //
  36.         MyOperation2 op2 =  () -> {};
  37.         op2.doSomething2();
  38.     }    
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement