接口可变长泛型怎么写小白,想达到下面代码的效果, 该怎么办相关代码@FunctionalInterfacepublic interface Convert1N<T..., R> { /**
* 调用多个参数有返回值方法
* Applies this function to the given arguments.
*
* @param t the function argument
* @return the function result
*/
R apply(T... t);
}
### 想达到的效果, 报错信息
![ 想达到的效果, 报错信息][1]
1 回答
慕妹3242003
TA贡献1824条经验 获得超6个赞
@FunctionalInterfacepublic interface Convert1N<T, R> { /** * 调用多个参数有返回值方法 * Applies this function to the given arguments. * * @param t the function argument * @return the function result */ R apply(T... t); }
interface层不需要变长。那里只是定义范型。实际接口中才用到变长。
添加回答
举报
0/150
提交
取消