从RequestContext方法返回Void

时间:2012-09-24 10:42:06

标签: gwt requestfactory

RequestContext方法中存在的方法是否可以返回void?

如果我的RequestContext看起来像这样,

@Service( value = PersonUtil.class, locator = PersonLocator.class )
public interface PersonRequest extends RequestContext
{

    Request<void> testMethod( Long id );
    ......
}

我收到此错误:

此行有多个标记      - 缺少方法的返回类型      - 令牌“void”上的语法错误,

之后的尺寸

我们不能创建返回类型为void的方法吗?如果没有,为什么会这样呢?

提前致谢。

1 个答案:

答案 0 :(得分:1)

void就像intboolean这样的原始类型,您不能将其用作类型参数。

就像您使用Integer代替int一样,您将在Void使用java.lang.Void