函数式接口之Supplier练习
Posted pxy-1999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数式接口之Supplier练习相关的知识,希望对你有一定的参考价值。
public class SupplierDemo { public static void main(String[] args) { String s = getString(()->"函数式接口"); System.out.println(s); Integer i = getInteger(()->20); System.out.println(i); } private static String getString(Supplier<String> sup){ return sup.get(); } private static Integer getInteger(Supplier<Integer> sup){ return sup.get(); } }
以上是关于函数式接口之Supplier练习的主要内容,如果未能解决你的问题,请参考以下文章