下面的代碼給我編譯時的錯誤:缺少返回值和缺少返回語句,我會返回什麼值這個Void Type
?Void方法缺少返回值?
final SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>()
{
@Override
protected Void doInBackground() throws Exception
{
// some code
if (something)
{
return;
}
}
}
你的空格是大寫的。 –
使用返回null。請參閱http://stackoverflow.com/questions/643906/uses-for-the-java-void-reference-type – jontro
我不能使用虛擬小寫字母,因爲泛型 – HericDenis