赞
踩
Java 8
中,
Runnable
和
Callable
两个接口均已通过
@FunctionalInterface
进行注释。
我们可以使用lambda表达式实现run()
和call()
方法。
在此页面上,我们还将提供如何将参数传递给Runnable
和Callable
方法。
Java 8
支持lambda
表达式。
在Java 8
中,已使用@FunctionalInterface
注释了Runnable
接口。
现在,我们可以使用lambda
表达式创建Runnable
实例。
Runnable r = () -> System.out.println("Hello World!");
Thread th = new Thread(r);
th.start();
上面的代码等同于下面的代码。
Runnable r = new Runnable() {
@Override
public void run() {
System.out.println("Hello World!");
}
};
Thread th = new Thread(r);
th.start();
如果需要在run()
方法中编写多行代码,可以使用如下所示的lambda表达式进行操作。
Runnable r = () -> {
Consumer<Book> style = (Book b) -> System.out.println("Book Id:"+b.getId() + ", Book Name:"+b.getName());
list.forEach(style);
};
要将参数传递给我们的run()
方法,我们应该使用final
修饰符。
final List<Book> list = Arrays.asList(new Book(1, "Ramayan"), new Book(2, "Mahabharat"));
Runnable r = () -> {
Consumer<Book> style = (Book b) -> System.out.println("Book Id:"+b.getId() + ", Book Name:"+b.getName());
list.forEach(style);
};
现在,找到使用Thread
类带有lambda
表达式的Java 8 Runnable
的完整示例。
Java8RunnableDemo.java
import java.util.Arrays; import java.util.List; import java.util.function.Consumer; import com.concretepage.Book; public class Java8RunnableDemo { public static void main(String[] args) { final List<Book> list = Arrays.asList(new Book(1, "Ramayan"), new Book(2, "Mahabharat")); Runnable r1 = () -> list.forEach(Book::print); Thread th1 = new Thread(r1); th1.start(); Runnable r2 = () -> { Consumer<Book> style = (Book b) -> System.out.println("Book Id:"+b.getId() + ", Book Name:"+b.getName()); list.forEach(style); }; Thread th2 = new Thread(r2); th2.start(); } }
Book.java
public class Book { public int id; public String name; public Book(int id, String name){ this.id = id; this.name = name; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public void print(){ System.out.println("id:"+id + ", Name:"+name); } }
输出
id:1, Name:Ramayan
Book Id:1, Book Name:Ramayan
id:2, Name:Mahabharat
Book Id:2, Book Name:Mahabharat
查找示例代码以使用ExecutorService
运行Runnable
实例。
Java8RunnableDemoExecutor.java
import java.util.Arrays; import java.util.List; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.function.Consumer; import com.concretepage.Book; public class Java8RunnableDemoExecutor { public static void main(String[] args) { final List<Book> list = Arrays.asList(new Book(1, "Ramayan"), new Book(2, "Mahabharat")); ExecutorService service = Executors.newFixedThreadPool(2); Runnable r1 = () -> list.forEach(Book::print); service.execute(r1); Runnable r2 = () -> { Consumer<Book> style = (Book b) -> System.out.println("Book Id:"+b.getId() + ", Book Name:"+b.getName()); list.forEach(style); }; service.execute(r2); } }
输出
id:1, Name:Ramayan
id:2, Name:Mahabharat
Book Id:1, Book Name:Ramayan
Book Id:2, Book Name:Mahabharat
Java 5
中引入了Callable <V>
接口,其中V
是返回类型。
在Java 8
中,Callable
接口已使用@FunctionalInterface
注释。
现在在Java 8
中,我们可以使用lambda
表达式创建Callable
对象,如下所示。
Callable<Integer> callableObj = () -> { return 2*3; };
上面的代码等同于下面的代码片段。
Callable<Integer> callableObj = new Callable<Integer>() {
@Override
public Integer call() throws Exception {
return 2*3;
}
};
要将参数传递给我们的call()
方法,我们应该使用final
修饰符。
final int val = 10;
Callable<Integer> callableObj = () -> { return 2*val; };
现在,找到使用ExecutorService
带有lambda
表达式的Callable
的完整示例。
Java8CallableDemo.java
import java.util.Arrays; import java.util.List; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; public class Java8CallableDemo { public static void main(String[] args) { final List<Integer> integers = Arrays.asList(1,2,3,4,5); Callable<Integer> callableObj = () -> { int result = integers.stream().mapToInt(i -> i.intValue()).sum(); return result; }; ExecutorService service = Executors.newSingleThreadExecutor(); Future<Integer> future = service.submit(callableObj); Integer result=0; try { result = future.get(); } catch (InterruptedException e) { e.printStackTrace(); } catch (ExecutionException e) { e.printStackTrace(); } System.out.println("Sum = "+result); } }
输出
Sum = 15
【1】Java 8 Runnable and Callable Lambda Example with Argument
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。