package test;
public class TestReturn {
public TestReturn() { } public String returnString() throws Exception{ throw new Exception(); }}在JDK1.4中能编译通过说明在方法执行完之前创建并抛出了异常,则该函数可以不返回值。