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

com.jchanghong.core.lang.func.Func0 Maven / Gradle / Ivy

The newest version!
package com.jchanghong.core.lang.func;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy