RequestContext方法中存在的方法是否可以返回void?
如果我的RequestContext看起来像这样,
@Service( value = PersonUtil.class, locator = PersonLocator.class )
public interface PersonRequest extends RequestContext
{
Request<void> testMethod( Long id );
......
}
我收到此错误:
此行有多个标记 - 缺少方法的返回类型 - 令牌“void”上的语法错误,
之后的尺寸我们不能创建返回类型为void的方法吗?如果没有,为什么会这样呢?
提前致谢。
答案 0 :(得分:1)
void
就像int
或boolean
这样的原始类型,您不能将其用作类型参数。
就像您使用Integer
代替int
一样,您将在Void
使用java.lang.Void