Lambda表达式

本文介绍了Lambda表达式的基本形式,参数列表和主体结构,重点讲解了如何在Java中利用函数式接口如Runnable创建线程池任务。通过Runnable接口实例展示了Lambda表达式在实际编程中的应用。
摘要由CSDN通过智能技术生成

Lambda表达式的形式

(parameters) -> { statements; }

parameters:参数列表,类似于方法参数。
->:箭头符号,用于分隔参数列表和Lambda表达式的主体。
{ statements; }:Lambda表达式的主体部分,类似方法体。

使用场景:
函数式接口可以使用Lambda表达式来创建接口实例。函数式接口是指只包含一个抽象方法的接口。如Runnable。

@FunctionalInterface
public interface Runnable {
    /**
     * When an object implementing interface {@code Runnable} is used
     * to create a thread, starting the thread causes the object's
     * {@code run} method to be called in that separately executing
     * thread.
     * <p>
     * The general contract of the method {@code run} is that it may
     * take any action whatsoever.
     *
     * @see     java.lang.Thread#run()
     */
    public abstract void run();
}

提交一个Runnable实例到线程池。

		ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(
                3,
                3,
                3,
                TimeUnit.MINUTES,
                new ArrayBlockingQueue<>(3)
        );

        threadPoolExecutor.submit(()->{
            System.out.println("1111111111");
        });
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值