All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.core.lang.func.Func0 Maven / Gradle / Ivy

Go to download

Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。

There is a newer version: 5.8.34
Show newest version
package cn.hutool.core.lang.func;

import cn.hutool.core.exceptions.ExceptionUtil;

import java.io.Serializable;

/**
 * 无参数的函数对象
* 接口灵感来自于ActFramework
* 一个函数接口代表一个一个函数,用于包装一个函数为对象
* 在JDK8之前,Java的函数并不能作为参数传递,也不能作为返回值存在,此接口用于将一个函数包装成为一个对象,从而传递对象 * * @author Looly * * @param 返回值类型 * @since 4.5.2 */ @FunctionalInterface public interface Func0 extends Serializable { /** * 执行函数 * * @return 函数执行结果 * @throws Exception 自定义异常 */ R call() throws Exception; /** * 执行函数,异常包装为RuntimeException * * @return 函数执行结果 * @since 5.3.6 */ default R callWithRuntimeException(){ try { return call(); } catch (Exception e) { throw ExceptionUtil.wrapRuntime(e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy