Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.spec;
- /**
- *
- * @author Admin
- */
- public class Main2 {
- //
- public static void main(String[] args) {
- //
- MyOperation operation = new MyOperationImpl();
- // вызываем метод определенный в интерфейсе
- operation.doSomething();
- //
- MyService service = new MyService();
- service.invoke(operation);
- // лямбда-выражения
- // лямбда-оператор: ->
- // лямбда-выражения: список параметров () -> реализация метода функционального инетрфейса
- // справа - лямбда выражения
- System.out.println("Лямбда выражение:");
- MyOperation operation2 = () -> {
- System.out.println("реализация метода doSomething!!!");
- };
- operation2.doSomething();
- MyOperation operation3 = () -> {};
- //
- MyOperation2 op2 = () -> {};
- op2.doSomething2();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement