RequestContext 方法中存在的方法可以返回 void 吗?
如果我的 RequestContext 看起来像这样,
@Service( value = PersonUtil.class, locator = PersonLocator.class )
public interface PersonRequest extends RequestContext
{
Request<void> testMethod( Long id );
......
}
我收到此错误:
此行有多个标记 - 缺少该方法的返回类型 - 标记“void”上的语法错误,尺寸预计在之后
我们不能创建返回类型为 void 的方法吗?如果不是,为什么会这样?
提前致谢。