15

以下代码给了我编译时错误:缺少返回值和缺少返回语句,我会为此返回什么值Void Type

final SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>() {
    @Override
    protected Void doInBackground() throws Exception {
        // some code
        if (something) {
            return;
        }
    }
}
4

2 回答 2

30

Void不是void,如果您不想返回任何内容,请将其更改为 void 类型。

void 是一个类,void 是类型。

/**
 * The {@code Void} class is an uninstantiable placeholder class to hold a
 * reference to the {@code Class} object representing the Java keyword
 * void.
 *
 * @author  unascribed
 * @since   JDK1.1
 */

如果需要Void,则需要return在末尾添加语句。

例子:

protected Void doInBackground() throws Exception {
    // some code
    if (something) {
       return null;
    }
    return null;
}
于 2012-12-06T17:57:43.047 回答
1

检查这个。它要求Void用大写的“V”而不是简单的返回void

final SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>() {
    @Override
    protected Void doInBackground() throws Exception {
        // my code here
        return null;
    }
}
于 2012-12-06T18:02:20.687 回答